The daily problem is this : I must print  from third field to end of all records in a file where fields are separated from Tab character.
To resolve this problem i use awk in this way :
cat  | awk -F" " '{ printf "%s\n",substr($0,index($0,$3)) }'  
Where in -F awk option I specify tab character, and I use substr with index function of third field in each record read.
Stay tuned. 
Nessun commento:
Posta un commento