Update general.aliases.bash
parent
c35361f3b1
commit
cc91898eef
|
|
@ -19,10 +19,6 @@ alias lisah='ls -lisah --color=auto'
|
|||
|
||||
alias _="sudo"
|
||||
|
||||
function mkdirr() {
|
||||
mkdir $1 && cd $1 && ls
|
||||
}
|
||||
|
||||
# Shortcuts to edit startup files
|
||||
alias vbrc="vim ~/.bashrc"
|
||||
alias vbpf="vim ~/.bash_profile"
|
||||
|
|
@ -62,16 +58,11 @@ alias ipy='ipython'
|
|||
alias piano='pianobar'
|
||||
|
||||
alias ..='cd ..' # Go up one directory
|
||||
alias cdh='cd ~/' # Go in home
|
||||
alias cd..='cd ..' # Common misspelling for going up one directory
|
||||
alias ...='cd ../..' # Go up two directories
|
||||
alias ....='cd ../../..' # Go up three directories
|
||||
alias -- -='cd -' # Go back
|
||||
|
||||
function cdls() {
|
||||
cd $1 && ls
|
||||
}
|
||||
|
||||
# Shell History
|
||||
alias h='history'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue