Last Updated: February 25, 2016
·
151
· marceloandrader

Open all not committed files in vi

I have a little alias to open all files not committed on git with vi:

alias viall='vi $(git status -sb|grep -v "^#"|awk '"'"'{FS=" "}{print $2}'"'"')'