Chinaunix

标题: sed a 命令如何把a 后面的字符串当成sed命令. [打印本页]

作者: 渣渣鸟    时间: 2010-04-14 11:15
标题: sed a 命令如何把a 后面的字符串当成sed命令.
  1. olive:~/tmp> cat aaa.txt
  2. 1
  3. 2
  4. 3
  5. 4
  6. 5
  7. 6
  8. olive:~/tmp> sed '/1/a xxx; /2/d; /3/a yyy; a hello' aaa.txt
  9. 1
  10. xxx; /2/d; /3/a yyy; a hello
  11. 2
  12. 3
  13. 4
  14. 5
  15. 6
  16. olive:~/tmp>
复制代码
显然,xxx; /2/d; /3/a yyy; a hello 都被当成a后面的字符串了。

但是我的意思是 a 后面的字符串是 xxx
接着/2/d;
/3/a yyy
a hello
都是sed的命令。

这个咋搞?
作者: fllintel    时间: 2010-04-14 11:22
sed -e '/1/a xxx' -e '/2/d' -e '/3/a yyy'
作者: lonol    时间: 2010-04-14 11:23
回复 1# 渣渣鸟


    用  -e 试试
作者: ghp268    时间: 2010-04-14 12:50
在多行写写试试
作者: crowsy001    时间: 2010-04-14 15:22
显然,xxx; /2/d; /3/a yyy; a hello 都被当成a后面的字符串了。

但是我的意思是 a 后面的字符串是 xxx
...
渣渣鸟 发表于 2010-04-14 11:15


man sed 有如下说明:
    (1) a\
       Text
            Places the Text variable in output before reading the next input line.
作者: 渣渣鸟    时间: 2010-04-14 16:30
根据楼上提示,两种做法。
  1. olive:~/tmp> cat aaa.txt
  2. 1                        
  3. 2
  4. 3
  5. 4
  6. 5
  7. 6
  8. olive:~/tmp> sed -e '/1/a\
  9. > xxx
  10. > /2/d
  11. > /3/a\
  12. > yyy
  13. > a hello' aaa.txt
  14. 1
  15. xxx
  16. hello
  17. 3
  18. yyy
  19. hello
  20. 4
  21. hello
  22. 5
  23. hello
  24. 6
  25. hello
  26. olive:~/tmp> sed -e '/1/a xxx' -e '/2/d' -e '/3/a yyy' -e 'a hello' aaa.txt
  27. 1
  28. xxx
  29. hello
  30. 3
  31. yyy
  32. hello
  33. 4
  34. hello
  35. 5
  36. hello
  37. 6
  38. hello
  39. olive:~/tmp>
复制代码

作者: blackold    时间: 2010-04-14 19:00
因为语法不对,看手册就清楚了。
作者: ubuntuer    时间: 2010-04-14 19:47
a和\之间还有个空格
  1. [root@kenthy ~]# sed '/1/a \
  2. > xxxx
  3. > /2/a \
  4. > yyy' txt
  5. 1
  6. xxxx
  7. 2
  8. yyy
  9. 3
  10. 4
  11. 5
  12. 6
复制代码





欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2