Skip to content

Instantly share code, notes, and snippets.

@rradczewski
Created December 1, 2014 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rradczewski/f00b5839096dfd57457c to your computer and use it in GitHub Desktop.
Save rradczewski/f00b5839096dfd57457c to your computer and use it in GitHub Desktop.
salias () {
N=$1
F=$ZSH_CUSTOM/aliases.zsh
shift
egrep -v "^alias $N" $F > $F.new
mv $F.new $F
echo "alias $N=\"$*\"" >> $F
source $F
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment