2011-10-27 107 views
0

是否有可能將wget的輸出重定向爲perl腳本的輸入(我想如果它是perl或不是,不過只是一個通用命令)。喜歡的東西:將wget輸出重定向到perl腳本輸入

perl perl_command.pl < wget http://some.cool.site.com/data.txt 

回答

1

bash

perl perl_command.pl < (wget http://some.cool.site.com/data.txt) 
+0

或者'wget的http://some.cool.site.com/data.txt | perl perl_command.pl' – Konerak

+0

@Prince bash:語法錯誤附近的意外標記'(' –

+0

@Konerak失敗後的一段時間錯誤:分段錯誤 –