xargs and svn mv
Here is a xargs shell tip for moving several subversion controlled files.
find . -name \*.html | xargs -n1 -I '{}' svn mv {} ../archive/
Technorati Tags: subversion, shell
Here is a xargs shell tip for moving several subversion controlled files.
find . -name \*.html | xargs -n1 -I '{}' svn mv {} ../archive/
Technorati Tags: subversion, shell
Comments are closed.