對於在bash腳本下面配管:如何在Bash腳本中將Bash命令輸出管道化爲多行Perl代碼?
Bash command | perl -ne 'single line perl command' | Another Bash command
Perl的命令只能是單行。如果我想編寫更復雜的多行Perl命令,那麼如何?我可以用perl的每一個命令行多個「-e」選項,如:
perl -n -e 'command line 1' -e 'command line 2' -e 'command line 3'
或者,我可以使用「立即文檔」爲多行的Perl代碼(perl的選項,如「 - n「,在這種情況下應該仍然可以被指定)。
如果可以使用「Here Document」,任何人都可以說明如何使用它。
在此先感謝您的任何建議。