Answers for "cut tab linux"

0

cut tab linux

cut -f2 -d$'\t' infile
Posted by: Guest on October-21-2021
0

cut tab linux

$ echo -e "a\tb\tc" |tr '\t' ' ' |cut -d' ' -f2
b
Posted by: Guest on October-21-2021
0

cut tab linux

cut -f2 -d'   ' infile
Posted by: Guest on October-21-2021
0

cut tab linux

awk -F '\t' '{ print $2 }' inputfile
Posted by: Guest on October-21-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language