From 12cf22e0e3f7d95a7700adb9dd5332cc3581e9c0 Mon Sep 17 00:00:00 2001 From: tianci li <86754294+jimcat8@users.noreply.github.com> Date: Sat, 2 Apr 2022 14:37:18 +0800 Subject: [PATCH 1/2] Update 03-commands.md --- docs/books/admin_guide/03-commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/books/admin_guide/03-commands.md b/docs/books/admin_guide/03-commands.md index 5cc27feb93..66ad131b4e 100644 --- a/docs/books/admin_guide/03-commands.md +++ b/docs/books/admin_guide/03-commands.md @@ -491,7 +491,7 @@ The `ls` command, however, has a lot of options (see `man`): | `-d` | Displays information about a directory instead of listing its contents. | | `-g` | Displays UID and GID rather than owner names. | | `-h` | Displays file sizes in the most appropriate format (byte, kilobyte, megabyte, gigabyte, ...). `h` stands for Human Readable. | -| `-s` | Displays the size in bytes (unless `k` option). | +| `-s` | Show the number of blocks occupied by the file. One block equals 400K. | | `-A` | Displays all files in the directory except `.` and `.`. | | `-R` | Displays the contents of subdirectories recursively. | | `-F` | Displays the type of files. Prints a `/` for a directory, `*` for executables, `@` for a symbolic link, and nothing for a text file. | From 2dadfbedb3a3d98ad8bc38e3e86e66ecf492eb80 Mon Sep 17 00:00:00 2001 From: tianci li <86754294+jimcat8@users.noreply.github.com> Date: Sat, 2 Apr 2022 14:39:57 +0800 Subject: [PATCH 2/2] Update 03-commands.md --- docs/books/admin_guide/03-commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/books/admin_guide/03-commands.md b/docs/books/admin_guide/03-commands.md index 66ad131b4e..a727e0dc76 100644 --- a/docs/books/admin_guide/03-commands.md +++ b/docs/books/admin_guide/03-commands.md @@ -491,7 +491,7 @@ The `ls` command, however, has a lot of options (see `man`): | `-d` | Displays information about a directory instead of listing its contents. | | `-g` | Displays UID and GID rather than owner names. | | `-h` | Displays file sizes in the most appropriate format (byte, kilobyte, megabyte, gigabyte, ...). `h` stands for Human Readable. | -| `-s` | Show the number of blocks occupied by the file. One block equals 400K. | +| `-s` | Displays the number of blocks occupied by the file. One block equals 400K. | | `-A` | Displays all files in the directory except `.` and `.`. | | `-R` | Displays the contents of subdirectories recursively. | | `-F` | Displays the type of files. Prints a `/` for a directory, `*` for executables, `@` for a symbolic link, and nothing for a text file. |