-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.bash_profile
executable file
·38 lines (25 loc) · 1.02 KB
/
.bash_profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
export CLICOLOR=1;
export LSCOLORS=exfxcxdxbxegedabagacad;
alias pi='ssh [email protected]'
alias vb='ssh [email protected]'
alias box85='ssh [email protected]'
alias box152='ssh [email protected]'
alias piwork='ssh [email protected]'
alias QR='scp [email protected]:~/repos/QR/* ~/repos/QR/'
alias Own='sudo chown -R rauger .'
alias gpull='git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done && git fetch --all && git pull --all'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
add_pwd_alias()
{
echo "alias "$1"='cd `pwd`'" >> ~/.bashrc
source ~/.bashrc
}
alias emq='cd /home/rauger/repos/emq-rlx'