From 67236bbb5be7640ef704582d52efb7197dbbd1a2 Mon Sep 17 00:00:00 2001 From: tianci li Date: Thu, 14 Apr 2022 08:46:36 +0800 Subject: [PATCH 1/2] Text Correction --- 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 ece5431122..1e30dac618 100644 --- a/docs/books/admin_guide/03-commands.md +++ b/docs/books/admin_guide/03-commands.md @@ -892,7 +892,7 @@ Example 2 - Displaying the contents of multiple files to standard output: $ cat /etc/passwd /etc/group ``` -Example 3 - Displaying the contents of several files in the file `usersAndGroups.txt`: +Example 3 - Overwrite the contents of multiple files into one file (using output redirection): ```bash $ cat /etc/passwd /etc/group > usersAndGroups.txt From 21858827a67a03c420e68831c6850d614eb3f50c Mon Sep 17 00:00:00 2001 From: tianci Date: Thu, 14 Apr 2022 22:03:37 +0800 Subject: [PATCH 2/2] update --- 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 1e30dac618..046ba6a285 100644 --- a/docs/books/admin_guide/03-commands.md +++ b/docs/books/admin_guide/03-commands.md @@ -892,7 +892,7 @@ Example 2 - Displaying the contents of multiple files to standard output: $ cat /etc/passwd /etc/group ``` -Example 3 - Overwrite the contents of multiple files into one file (using output redirection): +Example 3 - Combining the contents of multiple files into one file using output redirection: ```bash $ cat /etc/passwd /etc/group > usersAndGroups.txt