gpt4 book ai didi

bash - 通过 xargs 连接带有变量的字符串

转载 作者:行者123 更新时间:2023-11-29 09:37:43 25 4
gpt4 key购买 nike

假设我要touch 六个文件

one.html
one.css
two.html
two.css
three.html
three.css

我如何为此使用xargs?我正在查看手册页,但不确定获取标准输入管道的语法。

$ echo one two three | xargs -n 1 touch $1.html $1.css // nope

最佳答案

如果使用xargs 很重要:

printf "%s\n" one two three | xargs  -I{} touch {}.html {}.css

关于bash - 通过 xargs 连接带有变量的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39026100/

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