[CHANGED] e alias into shell function.
This commit is contained in:
parent
fe68e45ec0
commit
5a43bccb8e
1 changed files with 4 additions and 2 deletions
|
|
@ -328,8 +328,10 @@ function svnst() {
|
|||
rm -f $tmpfile
|
||||
}
|
||||
|
||||
alias e="$EDITOR"
|
||||
alias et="$EDITOR ."
|
||||
function e() {
|
||||
"$EDITOR" "$@" &!
|
||||
}
|
||||
alias et="$EDITOR . >/dev/null &!"
|
||||
|
||||
# global aliases - work anywhere on line
|
||||
alias -g C='|wc'
|
||||
|
|
|
|||
Loading…
Reference in a new issue