需要替换参数才能使用bash执行珍珠脚本

时间:2015-10-22 15:06:31

标签: linux bash shell

需要使用替换参数来使用bash执行Perl脚本。 我有一个在宝石上运行的脚本:

./script.pl "URL"

我需要替换" URL"用bash代替文件的值。谢谢。

1 个答案:

答案 0 :(得分:2)

./script.pl "$( cat file )"

./script.pl "$(< file )"

<file xargs ./script.pl

xargs -a file ./script.pl