Could you please advise how to fix command below, which removes unversioned items from svn
rem @echo off
for /f "tokens=2*" %%i in ('"c:\Program Files\TortoiseSVN\bin\svn.exe" status --no-ignore ^| find "?"') do echo %%i
variant below without path works:
rem @echo off
for /f "tokens=2*" %%i in ('svn.exe status --no-ignore ^| find "?"') do echo %%i
but i need to pass entire path with svn.exe. In this case it outputs C:\Program is not a valid program