标签:
shell 命令处理文本:
1. 批量处理该目录下的文件,ls | while read l ; do echo $l ; done > b.txt
2. 批量处理文件的每一行 , cut -f 1 a.txt | while read l ; do echo $l ; done > b.txt
3. 对文件内容进行匹配 , grep > ; sed 1d ; head b.txt ; cut -f 2 -d "|" ;
4. paste a.txt b.tx > c.txt
标签:
原文地址:http://www.cnblogs.com/xiaojikuaipao/p/shell.html