about summary refs log tree commit diff
path: root/Functions/Example/zpgrep
blob: 8b1edaa1ce12740cec6bf0660856d10106ade2dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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
}