vote up 1 vote down star

I have like a log.txt file which contains:

MyName

My batch:

@echo off
set name= [log.txt]

in the [log.txt] part, it should read 'MyName' from the log.txt file, to set it as 'name'.

How?

flag

2 Answers

vote up 4 vote down check

You can also use

set /p name=<log.txt

which might be considered shorter and a little less ugly.

link|flag
Hmm, why did this fail for me last time I tried :/ – grawity May 31 at 18:20
Dunno :-). Both methods work actually, but have different effects with files containing more than just one line. – Johannes Rössel May 31 at 18:55
it works for me so it's fine, this is a lot less stuff. – YourComputerHelpZ Jun 13 at 7:38
Nice. We don't get to be able to feed stdin with files very often with cmd compared to bash, I'll remember this one. – Jay Aug 28 at 12:11
vote up 2 vote down

In cmd.exe, there's only this ugly way:

@echo off
for /f "usebackq tokens=* delims=" %%i in ("log.txt") do (
    set name=%%i
)
link|flag
1  
You can cut the usebackq and tokens options from there, by the way, as you're not using them. – Johannes Rössel May 31 at 18:56
This is too much work, above seems to be easier. – YourComputerHelpZ Jul 14 at 18:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.