in reply to Re: Code Sub-Pattern Error "Panic: top_env"in thread Code Sub-Pattern Error "Panic: top_env"
#!/usr/bin/perl -w use strict; while(<>) { if(m/\s*\ \w+ \ (\w+| \w+\ \w+| \w+\ \w+\ \w+) \ (?=\1)/x) { $_ =~ s/$1//; print; } } [download]