vote up 1 vote down star
1

I would like to redirect the output from a command to a file and to stdout. I am using Windows XP command line.

I realize that there is a command in linux called tee which will do this, but I want this in windows.

flag

57% accept rate

5 Answers

vote up 0 vote down

If using tee (one of the various Windows variants) isn't an option and the command isn't long-running or you don't need to do further processing of the output in real time, then

command > file && type file

would do that for you. But only under the mentioned circumstances. You're probably be better off using tee.

link|flag
vote up 1 vote down

PowerShell has tee-object (standard alias tee) if you are using a decent shell.

link|flag
vote up 3 vote down

The first hit when googling windows tee gives UNIX-style tee utility for Windows

link|flag
vote up 1 vote down

Use tee for windows.

link|flag
vote up 2 vote down

The simple DOS shell doesn't have the ability to do this simultaneously.
Try using:

Windows PowerShell

or

Cygwin

link|flag

Your Answer

Get an OpenID
or

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