Skip to content

Instantly share code, notes, and snippets.

@znck
Created June 13, 2017 07:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save znck/6e94dbb127db2609d60206b4ec56821e to your computer and use it in GitHub Desktop.
Save znck/6e94dbb127db2609d60206b4ec56821e to your computer and use it in GitHub Desktop.
Create an alias for last command.
function aliasthat {
if [ -n ${1} ]; then
fc -e "sed -i -e \"s/^.*/echo alias $1=\\\"'\\\"\'&\'\\\"'\\\" >> ~\/.bash_alias/\""
. ~/.bash_alias
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment