aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/trap.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-11-30 00:00:04 +1000
committerGravatar axel <axel@liljencrantz.se>2006-11-30 00:00:04 +1000
commitf64364ccedb86d2fe182ac321585dbdda15c2175 (patch)
tree164a9ababc1d1f7455a841858aef524836308c51 /share/functions/trap.fish
parent32502bfac804551d09249675e382d297676a880c (diff)
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
Diffstat (limited to 'share/functions/trap.fish')
-rw-r--r--share/functions/trap.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/functions/trap.fish b/share/functions/trap.fish
index 27af0f4e..5cd91e29 100644
--- a/share/functions/trap.fish
+++ b/share/functions/trap.fish
@@ -113,7 +113,7 @@ function trap -d 'Perform an action when the shell recives a signal'
if count $opt >/dev/null
set -- names $opt
else
- set -- names (functions -na|grep "^__trap_handler_"|sed -e 's/__trap_handler_//' )
+ set -- names (functions -na|sgrep "^__trap_handler_"|sed -e 's/__trap_handler_//' )
end
for i in $names