我想要perl像grep这样一个单行
有点像这样,但我不知道添加什么来使其工作
$(echo a ; echo b ; echo c) | perl -e 'a'
添加
我的答案在这里涵盖了更多
https://superuser.com/questions/416419/perl-for-matching-with-regex-in-terminal
解决方法
(echo a; echo b; echo c) | perl -ne 'print if /a/'