tags:

views:

80

answers:

1

Hi All,

Iam copying the files from one path to svn working copy by comparing the those 2 folders using beyond compare commandline. Report will get generated after the comparison is done using beyond compare. If any extra files are present in the right side should get deleted from svn repsotiory. So iam using a below for loop to loop through that file. I want to use svn delete for all the right orphaned files in the txt file

FOR /F "tokens=* delims= usebackq" %%x IN (%TEXT_T%) DO (

echo %%x

)

Can you please let me know how can i assign the each line in the txt file and how can i apply svn delete command for that? any help would be appreciated

A: 

you can set variables as you iterate the loop

ghostdog74