How can I both pipe and display output in Windows' command line?
Solution 1:
You could try compiling this code and using it like: echo something | mytee | foo
.
I don't know if it will work, since I don't know how Windows deals with stderr
/stdout
, but it might work.
#include <stdio.h>
int main()
{
int c;
while((c = fgetc(stdin)) != EOF)
{
printf("%c", c);
fprintf(stderr, "%c", c);
}
return 0;
}
Solution 2:
One somewhat messy way I can think of is to use one of the ported tee
programs, save to a temporary file and then test the file with find
. However, the use of a temporary file may be undesirable.
If PowerShell is an option, it actually has a Tee-Output
cmdlet. It's not quite as direct as the bash example, but it does have a -Variable
option to save the output into a variable, which can then be searched:
# save result in $LastOutput and also display it to the console
echo "some text" | Tee-Output -Variable LastOutput
# search $LastOutput for a pattern, using Select-String
# instead of find to keep it within PowerShell
$Result = $LastOutput | Select-String -Quiet "text to find"
# $Result should contain either true or false now
# this is the equivalent of batch "if errorlevel 1"
if ($Result -eq $True) {
# the string exists in the output
}
To answer the more general question, it is also possible to pipe the variable into any other program, which will then set $LastExitCode
. As a one-liner that can be called from the basic command line: powershell -c "echo text | Tee-Object -Variable Result; $Result | foo"
Solution 3:
Why not just execute the command in PowerShell using Invoke-Command
and capture the results into a variable. You search the variable for your results if they are there, do something, and then display all the output to the console.
Test file to capture output from is just notepad with the following text (C;\Temp\OutputTest.txt):
blahlbalsdfh
abalkshdiohf32iosknfsda
afjifwj93f2ji23fnsfaijfafds
fwjifej9f023f90f3nisfadlfasd
fwjf9e2902fjf3jifdsfajofsda
jfioewjf0990f
Successfully Created
fsjfd9waf09jf329j0f3wjf90awfjw0afwua9
In your case though you would call your command as something like {& "Launch4j" config.xml}
I believe, but for my example:
Invoke-Command -ScriptBlock {Get-Content C:\temp\OutputTest.txt} | foreach {
$_;
if ($_ -match "successfully created") {$flag = $true}
}
if ($flag) {
"do whatever"
}