1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 00:41:44 +02:00
zsh/Functions/Example/zpgrep
2001-07-02 19:39:34 +00:00

26 lines
377 B
Plaintext

# Usage: zpgrep <perl5-compatible regex> <file1> <file2> ... <fileN>
#
zpgrep() {
local file pattern
pattern=$1
shift
if ((! ARGC)) then
set -- -
fi
pcre_compile $pattern
pcre_study
for file
do
if [[ "$file" == - ]] then
while read -u0 buf; do pcre_match $buf && print $buf; done
else
while read -u0 buf; do pcre_match $buf && print $buf; done < "$file"
fi
done
}