I have a input file of type .txt :
// file.txt
The quick brown dog jumped over the lazy fox.
Basically I want to use this input file to produce an output file with each string quote-enclosed and on its own line in CMD. Any ideas?
Output should be like this:
'The'
'quick'
etc...
@echo off
set /p text=<file.txt
(for %%i in (%text%) do echo '%%i')>newfile.txt
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With