linux系統中對指定行的字符串進行替換


1、測試數據

[root@PC3 test]# cat a.txt
e r e y e u e
e e g e 3 h r
1 3 e g e y e
e s e e e e e
e t s t e s r
d g e s w t e
[root@PC3 test]# cat b.txt
1
3
5

 

2、將1、3、5行中的e替換為x

[root@PC3 test]# cat a.txt
e r e y e u e
e e g e 3 h r
1 3 e g e y e
e s e e e e e
e t s t e s r
d g e s w t e
[root@PC3 test]# cp a.txt a.txt.bak
[root@PC3 test]# cat b.txt
1
3
5
[root@PC3 test]# cat b.txt | while read i; do sed -i "$i s/e/x/g" a.txt; done
[root@PC3 test]# cat a.txt
x r x y x u x
e e g e 3 h r
1 3 x g x y x
e s e e e e e
x t s t x s r
d g e s w t e

 

3、awk

[root@PC3 test]# cat a.txt
e r e y e u e
e e g e 3 h r
1 3 e g e y e
e s e e e e e
e t s t e s r
d g e s w t e
[root@PC3 test]# cat b.txt
1
3
5
[root@PC3 test]# cp a.txt a.txt.bak
[root@PC3 test]# for i in $(cat b.txt ); do awk -v a=$i '{if(NR == a) {gsub("e","x");print $0} else {print $0}}' a.txt > a && mv a a.txt; done
[root@PC3 test]# cat a.txt
x r x y x u x
e e g e 3 h r
1 3 x g x y x
e s e e e e e
x t s t x s r
d g e s w t e

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM