Answers for "linux cut"

2

cut bash

cut(1) - remove sections from each line of files
-d, --delimiter=DELIM
       use DELIM instead of TAB for field delimiter
-f, --fields=LIST
       select only these fields;  also print any line 
       that contains no delimiter character, unless the -s
       option is specified
Posted by: Guest on March-19-2020
0

linux cut

cut // remove sections from each line of files
echo foo bar baz | cut -f 2 -d ' '
bar
Posted by: Guest on July-25-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language