From 3b2974ba31afb6363e54678546d6742aadd34076 Mon Sep 17 00:00:00 2001 From: Michael Chen Date: Mon, 3 Jan 2022 12:00:05 -0500 Subject: [PATCH] Clarify that "sort" doesn't modify the file (#4121) --- bash.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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