vote up 1 vote down star
1

What is the easiest way to add a text to the beginning of another text file in Command Line (Windows)?

flag

2 Answers

vote up 1 vote down check
type "my line" > newFile.txt
type myOriginalFile.txt >> newFile.txt
type newFile.txt > myOriginalFile.txt

Untested. Double >> means 'append'

link|flag
It'll be "echo" instead of "type" for the first line but thanks, It worked. – dr. evil Feb 15 at 11:34
Er yeah, echo, sorry. :) I just spun that off the top of my head in case it helped you get along faster. – DarkwingDuck Feb 16 at 10:52
vote up 2 vote down

The following sequence will do what you want, adding the line "new first line" to the file.txt file.

ren file.txt temp.txt
echo.new first line>file.txt
type temp.txt >>file.txt
del temp.txt

Note the structure of the echo. "echo." allows you to put spaces at the beginning of the line if necessary and abutting the ">" redirection character ensures there's no trailing spaces (unless you want them, of course).

link|flag

Your Answer

Get an OpenID
or

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