I'm looking to get the result of a command as a variable in a Windows batch script (see how to get the result of a command in bash for the bash scripting equivalent). A solution that will work in a .bat file is preferred, but other common windows scripting solutions are also welcome.
|
|
If you have to capture all the command output you can use a batch like this:
All output lines are stored in VAR separated with "!". @John: is there any practical use for this? I think you should watch PowerShell or any other programming language capable to perform scripting tasks easily (Python, Perl, PHP, Ruby) |
||||
|
|
|
Example to set in the "V" environment variable the most recent file
in a batch file you have to use double prefix in the loop variable:
|
||
|
|
|
To get the current directory, you can use this:
It's using a temp-file though, so it's not the most pretty, but it certainly works! 'CD' puts the current directory in 'tmpFile', 'SET' loads the content of tmpFile. Here is a solution for multiple lines with "array's":
But you might want to consider moving to another more powerful shell or create an application for this stuff. It's stretching the possibilities of the batch files quite a bit. |
||||
|
|
|
You can capture all output in one variable, but the lines will be separated by a character of your choice (# in the example below) instead of an actual CR-LF.
Second version, if you need to print the contents out line-by-line. This takes advanted of the fact that there won't be duplicate lines of output from "dir /b", so it may not work in the general case.
|
|||
|
|
|
|
If you're looking for the solution provided in Using the result of a command as an argument in bash? then here is the code:
[Credits]: Thanks to all the other answers and some digging on the Windows XP commands page. |
||
|
|
|
|
The humble for command has accumulated some interesting capabilities over the years:
(note that delims= is used to over-write the default space and tab delimiters so that the output of the date command gets gobbled all at once) To capture multi-line output, it can still essentially be a one-liner (using the variable lf as the delimiter in the resulting variable):
|
|||
|
|
|
Please refer to this http://technet.microsoft.com/en-us/library/bb490982.aspx which explains what you can do with command output. |
||
|
|
|
you need to use the From a comment to this post:
|
|||
|
