devops-exercises/topics/linux/exercises/create_remove/solution.md
Abhinay Lavu fee2f99421
Fixes typos (#10244)
* Update solution.md

* Fix typo

fixes the typo for linux exercise create_remove

* fix typo
2024-02-02 15:15:14 +02:00

22 lines
442 B
Markdown

# Create & Destroy
## Objectives
1. Create a file called `x`
2. Create a directory called `content`
3. Move `x` file to the `content` directory
4. Create a file inside the `content` directory called `y`
5. Create the following directory structure in `content` directory: `dir1/dir2/dir3`
6. Remove the content directory
## Solution
```
touch x
mkdir content
mv x content
touch content/y
mkdir -p content/dir1/dir2/dir3
rm -rf content
```