-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalias
More file actions
24 lines (24 loc) · 691 Bytes
/
alias
File metadata and controls
24 lines (24 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# pretty path
alias path='echo $PATH | tr -s ":" "\n"'
alias mkdir="mkdir -p"
alias diff="colordiff"
alias df="df -H"
alias du="du -ch"
alias install="sudo apt-get install"
alias glog="git log --graph --oneline --decorate --date-order --color --boundary"
alias ls="ls --color=auto"
alias lh='ls -l .??*'
alias lhd='ls -ld .??*'
alias ll="ls -al"
# gzip / bzip
alias targx="tar -zxvf"
alias targc="tar -cxvf"
alias tarbx="tar --bzip2 -xvf"
alias tarbc="tar --bzip2 -cvf"
# tmux
alias tma='tmux attach -d -t'
alias tmn='tmux new -s $(basename $(pwd))' # make -global ?
alias tml='tmux list-sessions'
# bower
alias bower='noglob bower'
alias halcyoninit='eval "$( /app/halcyon/halcyon paths )"'