Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split: allow /0/ pattern split (#807)
* When splitting input file with -p PATTERN, allow pattern to be '0' * Probably this is a bad pattern to use, but ignoring -p0 is not correct %printf "aa\n0\nbb\n0\ncc\n" | perl split -p0 %for f in xaa*; do echo "$f:"; cat $f; done xaaa: aa xaab: 0 bb xaac: 0 cc
- Loading branch information