Handy .bashrc Aliases
By no means a complete list. I find this useful in my day to day. Feel free to comment and add some more
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Interactive/Safe Shell | |
alias rm="rm -i" | |
alias mv="mv -i" | |
alias cp="cp -i" | |
alias mkdir='mkdir -p' | |
# Old DOS habits | |
alias cd..="cd .." | |
alias ..="cd .." | |
alias cls="clear" | |
alias clc="clear" | |
# Directory Listing | |
alias ll="ls -lF" | |
alias la="ls -alF" | |
alias ls="ls -F" | |
# Grep | |
alias grep="grep -rn --color=auto" | |
# Shortcuts | |
alias h="history" | |
alias home="cd ~" | |
alias desktop="cd ~/Desktop" | |
alias download="cd ~/Downloads" | |
alias edit="mate" | |
# System Stats | |
alias up="uptime" | |
alias sup="ps auxwww" | |
alias df="df -h" |