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


You need to login to view comments.