Quellcode durchsuchen

update s function

pull/1/head
10sr vor 11 Jahren
Ursprung
Commit
aabb6eebcd
1 geänderte Dateien mit 8 neuen und 4 gelöschten Zeilen
  1. +8
    -4
      bashrc

+ 8
- 4
bashrc Datei anzeigen

@@ -368,15 +368,19 @@ s(){
ack --pager="$PAGER" "$@"
else
echo \
">> grep -nH --color=always" \
"--exclude=\'.svn/\*\' --exclude=\'.git/\*\'" \
"$@" "-r ." 1>&2
">> find . " \
"-path '*/.git' -prune -o" \
"-path '*/.svn' -prune -o" \
"-type f -exec grep -nH -e --color=always $@ {} +" 1>&2
if test $# -eq 0
then
echo "No search word given." 1>&2
return 1
fi
grep -nH --color=always --exclude='.svn/*' --exclude='.git/*' "$@" -r . \
find . \
-path '*/.git' -prune -o \
-path '*/.svn' -prune -o \
-type -f -exec grep -nH -e --color=always "$@" {} + \
| $PAGER
fi
}


Laden…
Abbrechen
Speichern