gpt4 book ai didi

grep - xargs:字符串串联

转载 作者:行者123 更新时间:2023-12-04 09:06:59 34 4
gpt4 key购买 nike

zgrep -i XXX XXX | grep -o "RID=[0-9|A-Z]*" |
uniq | cut -d "=" -f2 |
xargs -0 -I string echo "RequestID="string

我的输出是
RequestID=121212112
8127127128
8129129812

但是我的要求是在所有输出之前都添加请求ID。
任何帮助表示赞赏

最佳答案

尝试使用-nxargs选项。

-n max-args

Use at most max-args arguments per command line. Fewer than max-args arguments will be used if the size (see the -s option) is exceeded, unless the -x option is given, in which case xargs will exit.



例子:
$ echo -e '1\n2' | xargs echo 'str ='
str = 1 2

$ echo -e '1\n2' | xargs -n 1 echo 'str ='
str = 1
str = 2

关于grep - xargs:字符串串联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11128277/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com