Everywhere: Move cpp-tests under /home/anon/Tests

This commit is contained in:
Brian Gianforcaro 2022-03-20 11:38:55 -07:00 committed by Andreas Kling
commit 67fc81a65a
Notes: sideshowbarker 2024-07-17 17:01:28 +09:00
7 changed files with 18 additions and 18 deletions

View file

@ -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
```

View file

@ -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
```