ecl/src/util/search
Daniel Kochmański 1398fd381a cleanup: purge clx
2016-09-07 14:58:50 +02:00

5 lines
521 B
Text

function se () { (cd $HOME/src/ecl/src/; grep "$*" c/*.c c/*.d h/* {lsp,clos,cmp}/*); }
function sl () { (cd $HOME/src/ecl/src/; grep -l "$*" c/*.c c/*.d h/* {lsp,clos,cmp}/*); }
function sie () { (cd $HOME/src/ecl/src/; grep -i "$*" c/*.c c/*.d h/* {lsp,clos,cmp}/*); }
function sil () { (cd $HOME/src/ecl/src/; grep -il "$*" c/*.c c/*.d h/* {lsp,clos,cmp}/*); }
function cvstat () { cvs status `find src -type f -and -not \( -name Root -or -name Repository -or -name Entries \) ` 2>/dev/null | grep "Status: $*"; }