Skip to content

Instantly share code, notes, and snippets.

View harishannam's full-sized avatar
🎯
Focusing

Harish Annam harishannam

🎯
Focusing
View GitHub Profile
@harishannam
harishannam / .bash_profile
Last active April 21, 2019 08:55
Super Powered Bash Profile for a faster control 😎
### Color LS
colorflag="-G"
alias ls="command ls ${colorflag}"
alias l="ls -lF ${colorflag}" # all files, in long format
alias la="ls -laF ${colorflag}" # all files inc dotfiles, in long format
alias lsd='ls -lF ${colorflag} | grep "^d"' # only directories
### Quicker navigation
alias ..="cd .."
alias ..2="cd ../.."