How to make this an alias in zsh?
svn status | grep "^?" | awk -F " " '{print $2}' | tr "\n" "\0" | xargs -0 svn add
I know it should be something along the lines:
alias sall = "the command"
But as the line mixes " with ' I don't know how to handle that.