标签: linux bash shell
需要使用替换参数来使用bash执行Perl脚本。 我有一个在宝石上运行的脚本:
./script.pl "URL"
我需要替换" URL"用bash代替文件的值。谢谢。
答案 0 :(得分:2)
./script.pl "$( cat file )"
或
./script.pl "$(< file )"
<file xargs ./script.pl
xargs -a file ./script.pl