Files

15 lines
390 B
Bash
Raw Permalink Normal View History

#!/bin/sh
find . \
-path ./html/images -prune -o \
-path ./patches -prune -o \
-path ./html/includes/geshi -prune -o \
-path ./html/includes/jpgraph -prune -o \
-path ./html/js/jqplot -prune -o \
2015-07-01 21:03:42 +10:00
-path ./lib -prune -o \
2015-06-06 22:44:32 +10:00
-path ./junk -prune -o \
-path ./logs -prune -o \
-path ./mibs -prune -o \
-path ./rrd -prune -o \
2013-11-05 07:57:43 +10:00
-name .git -prune -o \
-type f -print0|xargs -0 grep "$@"