diff options
author | Michael Chen <flamingdescent@gmail.com> | 2022-01-03 12:00:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 01:00:05 +0800 |
commit | 3b2974ba31afb6363e54678546d6742aadd34076 (patch) | |
tree | e413150fdfef6f0edf35ad27dcf66db42890e915 | |
parent | 335fa5ca533933336ebd93a591be0865d3858be2 (diff) |
Clarify that "sort" doesn't modify the file (#4121)
-rw-r--r-- | bash.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index 4ed638e6..8813464e 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -434,7 +434,7 @@ tail -n 10 file.txt # prints first 10 lines of file.txt head -n 10 file.txt -# sort file.txt's lines +# print file.txt's lines in sorted order sort file.txt # report or omit repeated lines, with -d it reports them |