Perl语言匹配模式的打印行(PCRE grep)

示例

perl -ne'print if /foo/' file.txt

不区分大小写:

perl -ne'print if /foo/i' file.txt