标签: linux wget
是否有可能将wget的输出重定向为perl脚本的输入(我想如果它是perl或不是无关紧要,只是一个通用命令)。类似的东西:
perl perl_command.pl < wget http://some.cool.site.com/data.txt
答案 0 :(得分:1)
在bash:
bash
perl perl_command.pl < (wget http://some.cool.site.com/data.txt)