about summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2001-07-02 19:39:34 +0000
committerClint Adams <clint@users.sourceforge.net>2001-07-02 19:39:34 +0000
commitbff61cf9e1b2fd17eb971c1e5253f4d84eaedd3a (patch)
treef4b8e78b61816b2487da262a6631c62358888f7f /Functions
parent0f960cc8cac71ff4fdc88a45603b105e469b6079 (diff)
downloadzsh-bff61cf9e1b2fd17eb971c1e5253f4d84eaedd3a.tar.gz
zsh-bff61cf9e1b2fd17eb971c1e5253f4d84eaedd3a.tar.xz
zsh-bff61cf9e1b2fd17eb971c1e5253f4d84eaedd3a.zip
15211: zsh/pcre module
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Example/zpgrep25
1 files changed, 25 insertions, 0 deletions
diff --git a/Functions/Example/zpgrep b/Functions/Example/zpgrep
new file mode 100644
index 000000000..8b1edaa1c
--- /dev/null
+++ b/Functions/Example/zpgrep
@@ -0,0 +1,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
+}