'svn add' one-liner
Posted in dev-sys on January 28, 2012
Simple one-liner that I use when I've lots of files to add to a subversion repository:
for FILETOADD in `svn stat | awk '{ print $2 }'`; do svn add $FILETOADD; done
Posted in dev-sys on January 28, 2012
Simple one-liner that I use when I've lots of files to add to a subversion repository:
for FILETOADD in `svn stat | awk '{ print $2 }'`; do svn add $FILETOADD; done