Skip to content

Instantly share code, notes, and snippets.

@itkq
Created November 4, 2015 08:22
Show Gist options
  • Save itkq/c7be56065e597667a9ef to your computer and use it in GitHub Desktop.
Save itkq/c7be56065e597667a9ef to your computer and use it in GitHub Desktop.
alias
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias cd..='cd ..'
alias cp='cp -irv'
alias du='du -h --max-depth=1'
alias ll='ls -FGahl --show-control-chars --color=always'
alias ls='ls -AF --show-control-chars --color=always'
alias md='mkdir -p'
alias mv='mv -iv'
alias rm='rm -ir'
alias edit='eval "$EDITOR"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment