Answers for "space as delimiter in cut command"

0

space as delimiter in cut command

# taking the 2nd value (after space character)
awk '{print $2}'
or
tr -s ' ' | cut -d ' ' -f 2
Posted by: Guest on April-21-2022

Code answers related to "space as delimiter in cut command"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language