Update general.aliases.bash

pull/1322/head
Farlido Tekitsu 2019-02-07 14:13:06 +01:00 committed by GitHub
parent c35361f3b1
commit cc91898eef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 9 deletions

View File

@ -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'