现在我有这样的单线:
curl -fsSL http://git.io/vvZMn | bash
它正在下载脚本并将其作为标准输入文件传递给 bash。我想用附加参数运行这个脚本print。
print
也许是这样的?
curl -fsSL http://git.io/vvZMn | bash -- print
但这不起作用。
bash pipe input curl
bash ×1
curl ×1
input ×1
pipe ×1