diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2022-03-20 11:38:55 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-20 22:20:59 +0100 |
commit | 67fc81a65a21de9302f8b77799f427f9a480bc83 (patch) | |
tree | fe38fb7e47d84c8e014a240ebe675ef35cfffab8 /Base | |
parent | d7492927e9d48eb3593ab1ca0d645200651173e2 (diff) | |
download | serenity-67fc81a65a21de9302f8b77799f427f9a480bc83.zip |
Everywhere: Move cpp-tests under /home/anon/Tests
Diffstat (limited to 'Base')
-rw-r--r-- | Base/usr/share/man/man1/cp.md | 12 | ||||
-rw-r--r-- | Base/usr/share/man/man1/rm.md | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Base/usr/share/man/man1/cp.md b/Base/usr/share/man/man1/cp.md index 812c1f0f31..77c8515c93 100644 --- a/Base/usr/share/man/man1/cp.md +++ b/Base/usr/share/man/man1/cp.md @@ -25,12 +25,12 @@ If a directory is specified in `source`, the `-R` (recursive) flag is required. ## Examples ```sh -# Copy cpp-tests file and name it cpp-tests-backup -$ cp cpp-tests cpp-tests-backup +# Copy test file and name it test-backup +$ cp test test-backup -# Copy cpp-tests directory and name it cpp-tests-backup -$ cp -R cpp-tests cpp-tests-backup +# Copy tests directory and name it tests-backup +$ cp -R tests tests-backup -# Copy cpp-tests file into existing root -$ cp cpp-tests root +# Copy test file into existing root +$ cp test root ``` diff --git a/Base/usr/share/man/man1/rm.md b/Base/usr/share/man/man1/rm.md index 9800244d1a..219943189a 100644 --- a/Base/usr/share/man/man1/rm.md +++ b/Base/usr/share/man/man1/rm.md @@ -26,6 +26,6 @@ If a directory is specified in `path`, the `-r` (recursive) flag is required. Ot # Remove README.md file $ rm README.md -# Remove cpp-tests directory -$ rm -r cpp-tests +# Remove Tests directory +$ rm -r Tests ``` |