From 7ef1e51f90083b8704d0d6f27690df6353d921e9 Mon Sep 17 00:00:00 2001 From: sspencerwire Date: Tue, 23 Jan 2024 09:35:38 -0600 Subject: [PATCH] minor Anna edits `04-advanced-commands.md` * change incorrect singular references (create to creates) * other minor changes --- docs/books/admin_guide/04-advanced-commands.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/books/admin_guide/04-advanced-commands.md b/docs/books/admin_guide/04-advanced-commands.md index a5e41e0aa3..67c65ffa26 100644 --- a/docs/books/admin_guide/04-advanced-commands.md +++ b/docs/books/admin_guide/04-advanced-commands.md @@ -381,13 +381,13 @@ Options: | Options | Remarks                           | | ------- | ------------------------------------------------------------ | -| `-b` or `--backup[=suffix]` | create a backup of destination file. | -| `-d`    | treat arguments as directory names.               | -| `-D`    | create all leading components before copying SOURCE to DEST. | -| `-g` and `-o`    | set ownership.               | -| `-m`    | set permissions.               | -| `-p`    | preserve the timestamps of sources files.               | -| `-t` | copy all source arguments to directory. | +| `-b` or `--backup[=suffix]` | creates a backup of destination file | +| `-d`    | treats arguments as directory names               | +| `-D`    | creates all leading components before copying SOURCE to DEST | +| `-g` and `-o`    | sets ownership               | +| `-m`    | sets permissions               | +| `-p`    | preserves the timestamps of the sources files           | +| `-t` | copies all source arguments to the directory | !!! note @@ -415,7 +415,7 @@ install: creating directory '~/samples' 'src/sample.txt' -> '~/samples/sample.txt' ``` -This command already saves time, now let's combine it with owner, owner group and rights management: +This command already saves time. Combine it with owner, owner group, and rights management to improve the time savings: ```bash sudo install -v -o rocky -g users -m 644 -D -t ~/samples/ src/sample.txt