Help for this page
perl -wle '$str = "not junk"; $str !~ s/junk//g; print $str' Useless use of not in void context at -e line 1. not perl -wle '$str = "not junk"; $str =~ s/junk//g; print $str' not