root/autobuild/scripts/cleanunknown @ 1183

Revision 1183, 133 bytes (checked in by moo, 5 months ago)

adds clean unkown help script

  • Property svn:executable set to *
RevLine 
[1183]1#!/bin/sh
2[ -z "$1" ] && exit "Usage: $0 path"
3for dir in "$@"; do
4    svn st "$dir" | while read u file; do
5        rm -f "$file"
6    done
7done
Note: See TracBrowser for help on using the browser.