substr
start=3;stop=8; cat text.file | cut -c $start-$(($stop-1)) > out.dat
${Variable:2}
loop over text file
while read p; do echo $p done < text.file
substr
start=3;stop=8; cat text.file | cut -c $start-$(($stop-1)) > out.dat
${Variable:2}
loop over text file
while read p; do echo $p done < text.file