Search found 1 match

by joeshoe
30 Apr 2014 09:47
Forum: DOS Batch Forum
Topic: Question about Removing duplicate lines [SOLVED]
Replies: 10
Views: 19024

Re: Question about Removing duplicate lines [SOLVED]

for /f "tokens=2 delims=/" %%a in (text.txt) do echo,%%a>> text_done.txt


Probably a stupid question, but is there in something so it only leaves the first instance? Instead of the output being a blank text file?

Checked out stack overflow thread, but way over my head :)