Skip to content

Commit fee2f99

Browse files
authored
Fixes typos (bregman-arie#10244)
* Update solution.md * Fix typo fixes the typo for linux exercise create_remove * fix typo
1 parent b88151d commit fee2f99

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

topics/linux/exercises/copy/solution.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ touch /tmp/x
1717
cp x ~/
1818
cp x y
1919
mkdir files
20-
cp x files
21-
cp y files
20+
mv x files | mv y files
2221
cp -r files copy_of_files
2322
mv copy_of_files files2
2423
rm -rf files files2
25-
```
24+
```

topics/linux/exercises/create_remove/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
1. Create a file called `x`
66
2. Create a directory called `content`
77
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`
99
5. Create the following directory structure in `content` directory: `dir1/dir2/dir3`
1010
6. Remove the content directory
1111

1212
## Solution
1313

14-
Click [here](solution.md) to view the solution.
14+
Click [here](solution.md) to view the solution.

topics/linux/exercises/create_remove/solution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
1. Create a file called `x`
66
2. Create a directory called `content`
77
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`
99
5. Create the following directory structure in `content` directory: `dir1/dir2/dir3`
1010
6. Remove the content directory
1111

@@ -18,4 +18,4 @@ mv x content
1818
touch content/y
1919
mkdir -p content/dir1/dir2/dir3
2020
rm -rf content
21-
```
21+
```

0 commit comments

Comments
 (0)