Unstructured Scribbles

More
Akshay Patel

My name is Akshay Patel. I'm a Frontend Engineer in Los Angeles and I work at Yahoo! Sports.

Read more »

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"

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