瀏覽代碼

update function s

pull/1/head
10sr 11 年之前
父節點
當前提交
eb5e027601
共有 1 個文件被更改,包括 6 次插入5 次删除
  1. +6
    -5
      bashrc

+ 6
- 5
bashrc 查看文件

@@ -315,16 +315,17 @@ s(){

if git rev-parse --git-dir >/dev/null 2>&1
then
git grep -n "$1"
git grep -n "$@"
elif which ag >/dev/null
then
ag --pager="$PAGER" "$1"
ag --pager="$PAGER" "$@"
elif which ack >/dev/null
then
ack --pager="$PAGER" "$1"
ack --pager="$PAGER" "$@"
else
echo "No search command found. Use grep." 2>&1
return 127
grep -nH --exclude='.svn/*' --exclude='.git/*' "$@" -r . | $PAGER
# echo "No search command found. Use grep." 2>&1
# return 127
fi
}



Loading…
取消
儲存