prezto/plugins/perl/functions/prep
2012-01-23 20:40:57 -05:00

12 lines
191 B
Plaintext

# Perl grep since 'grep -P' is terrible.
if (( $# < 1 )) ; then
print "Usage: $0 pattern [file ...]" >&2
return 1
fi
local pattern="$1"
shift
perl -nle 'print if /'"$pattern"'/;' "$@"