in reply to multi-line in-place edits

perl -0ni -e "print qq({$_})" file


holli, /regexed monk/

Replies are listed 'Best First'.
Re^2: multi-line in-place edits
by jsprat (Curate) on Feb 16, 2005 at 01:18 UTC
    perl -0ni -e "print qq({$_})" file

    Caveat - this will fail quietly if the file contains any null bytes. -0 with no arguments sets the record separator to \0.

    Better to explicitly use -0777. This will cause perl to slurp the whole file, since "there is no legal byte with that value" (quoted from perlrun)