Deleting a file which is listed in svn status


/ Published in: Bash
Save to your folder(s)

A useful AWK one liner, see http://student.northpark.edu/pemente/awk/awk1line.txt for some more


Copy this code and paste it in your HTML
  1. svn status | awk '/Action/{print $2}' | xargs rm

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.