我有这个例子的shell脚本:
echo /$1/
所以我可以打电话
$ . ./script 5 # output: /5/
我想将脚本管理到sh(ell),但是我也可以传递arg吗?
cat script | sh # output: //
您可以使用-s选项将参数传递给shell:
cat script | bash -s 5