2016年8月31日

shell脚本,当用sed删除某一文件里面的内容时,并追加到同一个文件会出现问题。

摘要: shell脚本,当用sed删除某一文件里面的内容时,并追加到同一个文件会出现问题。因为初始文件和写入文件是一个文件这是失败的。需要追加到另一个文件,然后再用mv进行操作。[root@localhost wyb]# seq 10 > 10.txt [root@localhost wyb]# cat 10.txt 1 2 3 4 5 6 7 8 9 10 [root@localhost wyb]# ... 阅读全文

posted @ 2016-08-31 15:24 王月波 阅读(2909) 评论(0) 推荐(0)

shell脚本,按行读取文件的几种方法。

摘要: 第一种方法用while实现按读取文件。[root@localhost wyb]# cat a.txt 第一行 aaaaaa 第二行 bbbbbb 第三行 cccccc 第四行 dddddd 第五行 eeeeee [root@localhost wyb]# cat anhang.sh #!/bin/bash cat a.txt| while read line do ... 阅读全文

posted @ 2016-08-31 10:44 王月波 阅读(22998) 评论(1) 推荐(0)

导航