I type in this command frequently, and was trying to alias it, and couldn't for some reason.
for FILE in `svn stat | awk '{print $2}'`; do svn revert $FILE; done
This obviously does a large number of svn reverts.
when I alias it:
alias revert_all="for FILE in `svn stat | awk '{print $2}'`; do svn revert $FILE; done"
svn stat runs immediately - no good
Then I try double-quoting the awk portion:
alias revert_all='for FILE in `svn stat | awk "{print $2}"`; do svn revert $FILE; done'
but this does not run properly - the awk portion does not execute (I get the M values showing up and try to run svn revert M).
next try, with escaped single tick quotes:
alias revert_all='for FILE in `svn stat | awk \'{print $2}\'`; do svn revert $FILE; done'
The command does not complete, bash is waiting for another tick?
I know I could script this, or put the awk command in the file, but I'm not looking for a workaround. There is something here I don't know. What is it?
TIA