Chinaunix
标题:
sed a 命令如何把a 后面的字符串当成sed命令.
[打印本页]
作者:
渣渣鸟
时间:
2010-04-14 11:15
标题:
sed a 命令如何把a 后面的字符串当成sed命令.
olive:~/tmp> cat aaa.txt
1
2
3
4
5
6
olive:~/tmp> sed '/1/a xxx; /2/d; /3/a yyy; a hello' aaa.txt
1
xxx; /2/d; /3/a yyy; a hello
2
3
4
5
6
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
根据楼上提示,两种做法。
olive:~/tmp> cat aaa.txt
1
2
3
4
5
6
olive:~/tmp> sed -e '/1/a\
> xxx
> /2/d
> /3/a\
> yyy
> a hello' aaa.txt
1
xxx
hello
3
yyy
hello
4
hello
5
hello
6
hello
olive:~/tmp> sed -e '/1/a xxx' -e '/2/d' -e '/3/a yyy' -e 'a hello' aaa.txt
1
xxx
hello
3
yyy
hello
4
hello
5
hello
6
hello
olive:~/tmp>
复制代码
作者:
blackold
时间:
2010-04-14 19:00
因为语法不对,看手册就清楚了。
作者:
ubuntuer
时间:
2010-04-14 19:47
a和\之间还有个空格
[root@kenthy ~]# sed '/1/a \
> xxxx
> /2/a \
> yyy' txt
1
xxxx
2
yyy
3
4
5
6
复制代码
欢迎光临 Chinaunix (http://bbs.chinaunix.net/)
Powered by Discuz! X3.2