10

我有这样的命令:

cat error | grep -o [0-9]

仅打印数字,如2,30等等。现在我想把这个号码传给sed.

就像是 :

cat error | grep -o [0-9] | sed -n '$OutPutFromGrep,$OutPutFromGrepp'

有可能这样做吗?

我是 shell 脚本的新手。提前致谢

4

3 回答 3

5

如果打算打印grep返回的行,则生成sed脚本可能是要走的路:

grep -E -o '[0-9]+' error | sed 's/$/p/' | sed -f - error
于 2012-09-05T07:54:04.913 回答
2

您可能正在寻找xargs,尤其是-I选项:

themel@eristoteles:~$ xargs -I FOO echo once FOO, twice FOO
hi
once hi, twice hi
there
once there, twice there

你的例子:

themel@eristoteles:~$ cat error
error in line 123
error in line 234
errors in line 345 and 346
themel@eristoteles:~$ grep -o '[0-9]*' < error | xargs -I OutPutFromGrep echo sed -n 'OutPutFromGrep,OutPutFromGrepp'
sed -n 123,123p
sed -n 234,234p
sed -n 345,345p
sed -n 346,346p

对于实际使用,您可能需要传递sed一个输入文件并删除echo.

(顺便说一下,修复了你的UUOC。)

于 2012-09-05T07:28:57.677 回答
0

是的,您可以将 grep 的输出传递给 sed。

请注意,为了匹配整数,您需要使用 [0-9]* 而不仅仅是 [0-9],它只匹配单个数字。

另请注意,您应该使用双引号来扩展变量(在 sed 参数中),并且您似乎在第二个变量名称中有错字。

希望这可以帮助。

于 2012-09-05T07:22:19.743 回答