simple examples of how to

Tuesday, January 24, 2012

svn delete with wildcard

use find and xargs

example:

find target-folder/ -maxdepth 1 -name target_name[1-9]* | xargs -I '{}' svn rm '{}'

No comments:

Post a Comment