From bfcdfb7fb5372264b7b78ddbfafdc9a3c2444e5f Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 29 Aug 2007 18:46:34 +0000 Subject: optimize out some excess greps () --- rc.d/init.d/functions | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'rc.d/init.d/functions') diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index 528c050f..e85cff20 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -75,6 +75,18 @@ __readlink() { ls -bl "$@" 2>/dev/null| awk '{ print $NF }' } +__fgrep() { + s=$1 + f=$2 + while read line; do + if strstr "$line" "$s"; then + echo $line + return 0 + fi + done < $f + return 1 +} + # __umount_loop awk_program fstab_file first_msg retry_msg umount_args # awk_program should process fstab_file and return a list of fstab-encoded # paths; it doesn't have to handle comments in fstab_file. -- cgit