vote up 2 vote down star
2

Redirecting command output:

eg:

echo "Foo `./print_5_As.rb`"

would echo "Foo AAAAA"

Thanks

flag
You are asking two questions: one for CMD, and one for PowerShell. – Jay Bazuzi Jan 12 at 1:36

3 Answers

vote up 14 vote down

The PowerShell syntax is based on the POSIX ksh syntax (and interestingly not on any of Microsoft's languages like CMD.EXE, VBScript or Visual Basic for Applications), so many things work pretty much the same as in Bash. In your case, command substitution is done with echo "Foo $(./print_5_As.rb)" in both PowerShell and Bash.

Bash still supports the ancient way (backticks), but PowerShell cleaned up the syntax and removed redundant constructs such as the two different command substitution syntaxes. This frees up the backtick for a different use in PowerShell: in POSIX ksh, the backslash is used as escape character, but that would be very painful in PowerShell because the backslash is the traditional path component seperator in Windows. So, PowerShell uses the (now unused) backtick for escaping.

link|flag
It's great reading answers like this where you get to learn how and why things are. Thanks! (I'd do +10 if I could.) – PEZ Jan 12 at 15:13
vote up 1 vote down

In Powershell, you use $( ) to evaluate subexpressions...

For example:

PS C:\> "Foo $(./print_5_As.rb)"
Foo AAAAA
link|flag
vote up 0 vote down

In CMD.EXE you could do something like the following:

FOR /F %x IN ('"./print_5_As.rb"') DO echo %x
link|flag

Your Answer

Get an OpenID
or

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