Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Powershell: How to capture output from the host

I am using powershell to automate some tasks related to checking out/merging in TFS. When I call

tf get * /recurse

I get a bunch of data scrolling by about the files that are getting checked out. The last line generated by this command (assuming its success) is one telling the checkin number. I would like to parse this out so it can be used later on in my script.

I know that I can do something like

$getOutput = tf get * /recurse

but then the output is suppressed entirely and I want the output of that command to be scrolled in realtime. I would basically like to grab everything that just got sent to the output buffer.

like image 801
George Mauer Avatar asked Dec 29 '22 08:12

George Mauer


2 Answers

Try something like this:

tf get * /recurse | tee-Object -Variable getOutput

like image 112
Mike Shepard Avatar answered Jan 09 '23 03:01

Mike Shepard


The tee-object in PowerShell 2.0 allows you to pipe results to two sources. If you leave the second source empty, the results go to the console.

ls | tee-object -filePath directoryListing.txt

This will write the directory listing to both the console and a text file.

like image 22
Timothy Lee Russell Avatar answered Jan 09 '23 04:01

Timothy Lee Russell