Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save patricksanders/7fdac24e58e42dc495758398fb59da08 to your computer and use it in GitHub Desktop.
Save patricksanders/7fdac24e58e42dc495758398fb59da08 to your computer and use it in GitHub Desktop.
Alias to create aliases
# set aliases
. ~/.bash_aliases
new-alias() {
local last_command=$(echo `history |tail -n2 |head -n1` | sed 's/[0-9]* //')
echo alias $1="'""$last_command""'" >> ~/.bash_aliases
. ~/.bash_aliases
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment