We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ba55f6 + 81ece15 commit 9adbfc3Copy full SHA for 9adbfc3
02-Bash-Basics.md
@@ -527,6 +527,17 @@ How would you print the top three scores from the file?
527
528
- `-n num_lines`: Display `num_lines` lines, rather than the default of 10
529
530
+`sort [<filename>]`: Sort lines of a file or STDIN
531
+
532
+- `-u`: Remove duplicate lines from output
533
+- `-n`: Perform numerical sort instead of string sort
534
535
+`wc [<filenames>]`: Count characters, words, and lines in files or STDIN
536
537
+`echo <string>`: Print string to STDOUT
538
539
+- `-e`: Interpret backslash escapes (i.e., `\n` is printed as a newline)
540
541
`man <command>`: Display manual page for a command
542
543
Special Filenames:
0 commit comments