File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -746,8 +746,8 @@ and *only* the processed data files?
746
746
- ` wc ` counts lines, words, and characters in its inputs.
747
747
- ` cat ` displays the contents of its inputs.
748
748
- ` sort ` sorts its inputs.
749
- - ` head ` displays the first 10 lines of its input.
750
- - ` tail ` displays the last 10 lines of its input.
749
+ - ` head ` displays the first 10 lines of its input by default without additional arguments .
750
+ - ` tail ` displays the last 10 lines of its input by default without additional arguments .
751
751
- ` command > [file] ` redirects a command's output to a file (overwriting any existing content).
752
752
- ` command >> [file] ` appends a command's output to a file.
753
753
- ` [first] | [second] ` is a pipeline: the output of the first command is used as the input to the second.
You can’t perform that action at this time.
0 commit comments