em,g
This commit is contained in:
parent
03450c9ac7
commit
c1f5176e25
2 changed files with 11 additions and 10 deletions
|
@ -1,4 +1,4 @@
|
||||||
# short
|
em() {
|
||||||
alias em="\
|
emacs \
|
||||||
emacs \
|
"${@}"
|
||||||
"
|
}
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
# grep from current directory with regex
|
# grep from current directory with regex
|
||||||
alias g="\
|
g() {
|
||||||
grep \
|
grep \
|
||||||
--directories \"recurse\" \
|
--directories "recurse" \
|
||||||
--line-number \
|
--line-number \
|
||||||
--regexp \
|
--regexp \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue