Batch equivilant of Bash backticks
Posted
by MiffTheFox
on Stack Overflow
See other posts from Stack Overflow
or by MiffTheFox
Published on 2010-05-04T20:07:32Z
Indexed on
2010/05/04
20:18 UTC
Read the original article
Hit count: 342
When working with Bash, I can put the output of one command into another command like so:
my_command `echo Test`
would be the same thing as
my_command Test
(Obviously, this is just a non-practical example.)
I'm just wondering if you can do the same thing in Batch.
© Stack Overflow or respective owner