我有一个命令incmd version
,它产生以下输出
All Rights Reserved.
This Software is protected by U.S. Patent Numbers 5,794,246; 6,014,670; 6,016,50
1; 6,029,178; 6,032,158; 6,035,307; 6,044,374; 6,092,086; 6,208,990; 6,339,775;
6,640,226; 6,789,096; 6,820,077; 6,823,373; 6,850,947; 6,895,471; 7,117,215; 7,1
62,643; 7,254,590; 7,281,001; 7,421,458; 7,496,588; 7,523,121; 7,584,422; 7,720,
842; 7,721,270; and 7,774,791, international Patents and other Patents Pending.
Version: 9.1.0 HotFix2
Build: 1668 - 2011-Sep-02
Command ran successfully.
我想从中获取9.1.0
。到目前为止使用findstr "Version"
我只得到Version: 9.1.0 HotFix2
有没有办法可以提取列信息?
注意:不使用任何第三方工具..(在Windows中默认使用的anytool很好)
答案 0 :(得分:1)
您可以使用for
来标记该输出:
for /f "tokens=2, delims= " %v in ('incmd version ^| findstr Version') do @set Version=%v
echo %Version%
有关命令及其选项的详细说明,请参阅help for
。
请注意,如果您在批处理文件中使用它(我最初假设,但显然不是这种情况),您必须将for
变量中的百分号加倍:
for /f "tokens=2, delims= " %%v in ('incmd version ^| findstr Version') do @set Version=%%v
echo %Version%