for i in `cat file.txt`do echo ${i:6:1} ###done
cut -c 7-7 file.txt
没看明白你的问题。。。。要提取某一列的内容可以用awk做,比如提取1.txt文件第一列awk‘{print $1}’ 1.txt提取
提示你下 cut -c 命令