Skip to content

Instantly share code, notes, and snippets.

@wooliet
wooliet / .bash_aliases
Created February 9, 2018 15:35
Bash Aliases
# Alias
alias l='ls -G'
alias ls='ls -G'
alias lsa='ls -aG'
alias lsal='ls -alhG'
alias ll='ls -lG'
alias lsl='ls -1'
alias cls='clear'
@wooliet
wooliet / mac.bashrc
Last active November 16, 2015 14:58
My ~/.bashrc file
# Alias
alias ls='ls -G'
alias cls='clear'
# reload bash
alias bashrc='source ~/.bash_profile'
# Open finder at the current terminal path
alias eh='open .'
# Local installed npm modules will execute
# http://stackoverflow.com/a/15157360