Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

cut delimiter 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
 
PREVIOUS NEXT
Tagged: #cut #delimiter #spaces
ADD COMMENT
Topic
Name
9+8 =