diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-08 15:09:47 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-08 15:09:47 -0800 |
commit | 50dc749bbbda57f8532f7b86251704a28d13148e (patch) | |
tree | 45c5b46ebfe6cf75cc7c1ac0c7f5611204fc81db | |
parent | [bash] Add bin directory to path. (diff) | |
download | emacs.d-50dc749bbbda57f8532f7b86251704a28d13148e.tar.gz |
[bash] Add a few more aliases.
-rwxr-xr-x | bashrc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bashrc b/bashrc index ffede15..67f34af 100755 --- a/bashrc +++ b/bashrc @@ -25,6 +25,12 @@ alias lt="ls -lhtr" alias mv="mv -i" alias rm="rm -i" +alias g="git" +alias au="aurora" +alias aud="aurora_admin" +alias gonest="ssh nest" +alias tm="tmux attach || tmux new" + # finally, build the path and source a few files __add_to_path_if_exists() { [ -d "$1" ] && export PATH="$1:$PATH" |