Skip to content

Commit 12dec27

Browse files
authored
Update modify.md
second attempt to fix numbers
1 parent 8928d2e commit 12dec27

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/modify.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,13 @@ This command is used to copy files or directories.
190190
mkdir testdir3
191191
```
192192
4. Copy the new subdirectory ``testdir3`` to the directory ``testdir2``. Remember, "testdir2" is located outside "testdir1" and at the same "level". This can be done in more than one way. Remember you need the option ``-r`` (for recursive) when copying directories:
193+
193194
a) "Go up one" and then copy:
194195
```bash
195196
cd ..
196197
cp -r testdir1/testdir3 testdir2/
197198
```
199+
198200
b) Copy will standing inside ``testdir1``
199201
```bash
200202
cp -r testdir3 ../testdir2

0 commit comments

Comments
 (0)