On Fri, Oct 09, 2009 at 10:55:38AM +0200, Matthieu Moy wrote: > > > > perl -0 -ne 'print if /this/' > > Also, this seems to actually print the \0 character. Perhaps a perl > guru can give a simple solution to replace the \0 by a \n? If you want some indication that there is a null character: perl -0 -ne '/this/ or next; s/\0/{NULL}/g; print' otherwise: perl -0 -ne '/this/ or next; s/\0/\n/g; print' Scott -- Scott Wiersdorf <scott@xxxxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html