From f64364ccedb86d2fe182ac321585dbdda15c2175 Mon Sep 17 00:00:00 2001 From: axel Date: Thu, 30 Nov 2006 00:00:04 +1000 Subject: Replace all internal uses of grep with sgrep, which is a wrapper around grep that strips away any GREP_OPTIONS. This is needed to avoid users who have added arbitrary switches to GREP_OPTIONS, thus changing its behaviour. darcs-hash:20061129140004-ac50b-485ff6bfd71e9459ba62461f6e093ca5c9ddd664.gz --- share/completions/fusermount.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'share/completions/fusermount.fish') diff --git a/share/completions/fusermount.fish b/share/completions/fusermount.fish index 13d34c21..45ae8922 100644 --- a/share/completions/fusermount.fish +++ b/share/completions/fusermount.fish @@ -5,8 +5,8 @@ # complete -c fusermount -d (N_ "Mount point") -x -a ' ( - cat /etc/mtab | grep "^sshfs" | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|grep "^/" - cat /etc/mtab | grep "^fuseiso" | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|grep "^/" + cat /etc/mtab | sgrep "^sshfs" | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|sgrep "^/" + cat /etc/mtab | sgrep "^fuseiso" | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|sgrep "^/" ) ' -- cgit v1.2.3