Skip to content

Instantly share code, notes, and snippets.

View prathik's full-sized avatar

Prathik Rajendran M prathik

View GitHub Profile
@prathik
prathik / .bash_create_alias
Last active August 29, 2015 14:03
Alias code with remove alias
alias showalias='cat ~/.bash_aliases'
#Type ma <aliasname> in a directory and it will create an alias to cd into that directory
makeAlias()
{
curDir=`pwd`
echo "alias $1='cd $curDir'" >> ~/.bash_aliases
source ~/.bashrc
}