Skip to content

Instantly share code, notes, and snippets.

@drts01
Created April 4, 2014 06:17
Show Gist options
  • Save drts01/9969124 to your computer and use it in GitHub Desktop.
Save drts01/9969124 to your computer and use it in GitHub Desktop.
BASH Settup
alias ls='ls --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
alias grep='grep --color=tty -d skip'
alias cp="cp -i" # confirm before overwriting something
alias df='df -h' # human-readable sizes
alias free='free -m' # show sizes in MB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment