Difference between revisions of "Cut"

From wiki
Jump to navigation Jump to search
(Created page with "Category:Unix/Linux ;cut -c -100 <file> :Show the first 100 characters in <file> ;cut -f 3 <file> :Show for every row the 3th column in <file>")
 
m
 
Line 1: Line 1:
[[Category:Unix/Linux]]
+
[[Category:Linux/Unix]]
 
;cut -c -100 <file>
 
;cut -c -100 <file>
 
:Show the first 100 characters in <file>
 
:Show the first 100 characters in <file>

Latest revision as of 13:20, 14 January 2022

cut -c -100 <file>
Show the first 100 characters in <file>
cut -f 3 <file>
Show for every row the 3th column in <file>