View Single Post

  #2 (permalink)  
Old 05-21-2008, 06:48 PM
unSpawn unSpawn is offline
Junior Member
User
 
Join Date: Feb 2008
My distro: .
Posts: 9
Rep Power: 0
unSpawn is on a distinguished road
Default

If your format is fixed then you could start by substituting 'echo|cut'?:
Code:
while read DATA; do
 echo ${DATA:0:10} ${DATA:11:6} ${DATA:17:17} # etc, etc..
done
Reply With Quote