/ Published in: Bash
A useful AWK one liner, see http://student.northpark.edu/pemente/awk/awk1line.txt for some more
Expand |
Embed | Plain Text
svn status | awk '/Action/{print $2}' | xargs rm
Comments
Subscribe to comments
You need to login to post a comment.

Another option is rm -v -rf
svn st | awk '{ print $2 }'