浏览代码

update s function

pull/1/head
10sr 11 年前
父节点
当前提交
aabb6eebcd
共有 1 个文件被更改,包括 8 次插入4 次删除
  1. +8
    -4
      bashrc

+ 8
- 4
bashrc 查看文件

@@ -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
}


正在加载...
取消
保存