H
here
Given the one-liner:
perl -0ne 'print "$ARGV\n" if [some condition];' *
What effect does the -0 have on each file? I know the values for paragraph mode 00 and file slurp mode 0777, but I can't find a definitive answer on when $/ is set to the null character.
perl -0ne 'print "$ARGV\n" if [some condition];' *
What effect does the -0 have on each file? I know the values for paragraph mode 00 and file slurp mode 0777, but I can't find a definitive answer on when $/ is set to the null character.