Search found 2 matches

by vikisch
29 Oct 2013 16:06
Forum: DOS Batch Forum
Topic: [SOLVED] parse COMPLETE line from a file
Replies: 3
Views: 2048

Re: parse COMPLETE line from a file

here is my code without wrong whitespace

Code: Select all

for /f "tokens=*" %%a in (out.txt) do call :FurtherProcessing %%a


but the tip of aGerman has already helped me - thank you a lot. Problem solved!
by vikisch
28 Oct 2013 16:37
Forum: DOS Batch Forum
Topic: [SOLVED] parse COMPLETE line from a file
Replies: 3
Views: 2048

[SOLVED] parse COMPLETE line from a file

I would like to write a batch-script to backup my junction and symbolic links I'm using this command: dir "%CD%" / al / s>out.txt In the out.txt-file are for example the following lines: 26/11/2013 12:34 <JUNCTION> FolderJunction1 [C:\Path1\SubFolder1] 26/11/2013 23:44 <SYMLINKD> FolderSym...