Menu toggle

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

# 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"
view raw bash_aliases.sh hosted with ❤ by GitHub

Unstructured Scribbles is powered by Gatsby JS. Opinions on this website are my own and not of my employer.