首页 > 学院 > 操作系统 > 正文

shell练习1:删除目录下指定文件中的指定行

2024-06-28 16:04:11
字体:
来源:转载
供稿:网友

删除lianxi目录下所有的a.txt文件里的所有内容为”lucy”的行

[root@vmcentos lianxi]# for i in {1..5};do echo "test" >> $i/a.txt;done [root@vmcentos lianxi]# for i in {1..5};do echo "lucy" >> $i/a.txt;done [root@vmcentos lianxi]# find /root/lianxi -name a.txt -exec sed -i '/lucy/d' {} /; [root@vmcentos lianxi]# cat {1..5}/a.txt test test test test test [root@vmcentos lianxi]# for i in {1..5};do echo "lucy" >> $i/a.txt;done [root@vmcentos lianxi]# cat 1/a.txt test lucy [root@vmcentos lianxi]# find . -name a.txt | xargs sed -i '/lucy/d' [root@vmcentos lianxi]# cat {1..5}/a.txt test test test test test

备忘

find的exec和xargs俩种方法
find /root/lianxi -name a.txt | xargs ls -lhfind /root/lianxi -name a.txt -exec ls -lh {} /;
sed删除匹配行and替换匹配行
[root@vmcentos 1]# cat a.txt lucytest[root@vmcentos 1]# sed -i '/^l.*/d' a.txt[root@vmcentos 1]# cat a.txt test[root@vmcentos 1]# vi a.txt [root@vmcentos 1]# cat a.txt testlucy[root@vmcentos 1]# sed -i 's/^l.*/haha/g' a.txt [root@vmcentos 1]# cat a.txt testhaha[root@vmcentos 1]#

-i 表示操作在源文件上生效.否则操作内存中数据,并不写入文件中. 在分号内的/d表示删除匹配的行 分号内的s/表示替换 /g表示全局替换


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表