Answers for "bash cut delimiter multiple spaces"

0

bash cut delimiter multiple spaces

Just use cut command with delimiter flag 'd' as follows:
echo 'a1 a2 a3 a4 a5' | cut -d ' ' -f 1,4- 
a1 a4 a5	#outputs first and from 4th fields of given string
Posted by: Guest on November-11-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language