summaryrefslogtreecommitdiff
path: root/find_by_keyword
diff options
context:
space:
mode:
Diffstat (limited to 'find_by_keyword')
-rwxr-xr-xfind_by_keyword7
1 files changed, 0 insertions, 7 deletions
diff --git a/find_by_keyword b/find_by_keyword
deleted file mode 100755
index 93bf851..0000000
--- a/find_by_keyword
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/zsh
-
-for i in `find . -type f`; do
- A=$(jhead $i 2>/dev/null | grep Keyword | grep $1)
- if [ "$A" != "" ]; then echo $i; fi
-done
-