Skip to content

Instantly share code, notes, and snippets.

@era
Created May 26, 2020 18:54
Show Gist options
  • Save era/ffb2210760135f69a6651c0f0a789959 to your computer and use it in GitHub Desktop.
Save era/ffb2210760135f69a6651c0f0a789959 to your computer and use it in GitHub Desktop.
Functions to save new shell functions into my dotfiles
save_alias () {
echo $1 >> ~/.functions/aliases.sh
reload
}
reload () {
source ~/.zshrc
}
save_fun () {
which $1 >> ~/.functions/dev.sh
reload
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment