I\'m trying to svn update my SVN working copy with TortoiseSVN but the update fails, asking to perform the clean up first.
svn update
However, the svn cleanup
svn cleanup
This will do it too as a one-liner:
while [ 1 ] ; do OUTPUT=`svn cleanup 2>&1 | sed 's/^.* open file //' | sed 's/:.*$//' | sed "s/'//g"`;if [ "X${OUTPUT}" == "X" ] ; then break; fi; echo $OUTPUT;touch $OUTPUT;done