File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,8 @@ touch /tmp/x
17
17
cp x ~/
18
18
cp x y
19
19
mkdir files
20
- cp x files
21
- cp y files
20
+ mv x files | mv y files
22
21
cp -r files copy_of_files
23
22
mv copy_of_files files2
24
23
rm -rf files files2
25
- ```
24
+ ```
Original file line number Diff line number Diff line change 5
5
1 . Create a file called ` x `
6
6
2 . Create a directory called ` content `
7
7
3 . Move ` x ` file to the ` content ` directory
8
- 4 . Create a file insidethe ` content ` directory called ` y `
8
+ 4 . Create a file inside the ` content ` directory called ` y `
9
9
5 . Create the following directory structure in ` content ` directory: ` dir1/dir2/dir3 `
10
10
6 . Remove the content directory
11
11
12
12
## Solution
13
13
14
- Click [ here] ( solution.md ) to view the solution.
14
+ Click [ here] ( solution.md ) to view the solution.
Original file line number Diff line number Diff line change 5
5
1 . Create a file called ` x `
6
6
2 . Create a directory called ` content `
7
7
3 . Move ` x ` file to the ` content ` directory
8
- 4 . Create a file insidethe ` content ` directory called ` y `
8
+ 4 . Create a file inside the ` content ` directory called ` y `
9
9
5 . Create the following directory structure in ` content ` directory: ` dir1/dir2/dir3 `
10
10
6 . Remove the content directory
11
11
@@ -18,4 +18,4 @@ mv x content
18
18
touch content/y
19
19
mkdir -p content/dir1/dir2/dir3
20
20
rm -rf content
21
- ```
21
+ ```
You can’t perform that action at this time.
0 commit comments