想用grep+perl regular expression在文件里找一些东西,但是遇到这个问题。如何解
决?多谢
grep: Support for the -P option is not compiled into this --disable-perl-
regexp binary
m*********g 发帖数: 273
2
I would use PERL only.
C********s 发帖数: 120
3
download src and compile a grep yourself
b****j 发帖数: 78
4
one line perl grepper:
perl -nle '/regular expression/ and print'
【在 r**u 的大作中提到】 : 想用grep+perl regular expression在文件里找一些东西,但是遇到这个问题。如何解 : 决?多谢 : grep: Support for the -P option is not compiled into this --disable-perl- : regexp binary
r**u 发帖数: 1567
5
thx
【在 b****j 的大作中提到】 : one line perl grepper: : perl -nle '/regular expression/ and print'