fee2f99421
* Update solution.md * Fix typo fixes the typo for linux exercise create_remove * fix typo
442 B
442 B
Create & Destroy
Objectives
- Create a file called
x
- Create a directory called
content
- Move
x
file to thecontent
directory - Create a file inside the
content
directory calledy
- Create the following directory structure in
content
directory:dir1/dir2/dir3
- Remove the content directory
Solution
touch x
mkdir content
mv x content
touch content/y
mkdir -p content/dir1/dir2/dir3
rm -rf content