ASSIGN win XP 命令行输出到变量

发布于 2024-07-13 02:43:22 字数 262 浏览 9 评论 0原文

我想将以下脚本从 linux shell 翻译为 Windows XP shell

GPSID=$(awk '/GPSID/ {print $3}' gora.RTK ) 
awk -v variable=${GPSID} 'BEGIN {printf "Numer seryjny : " variable,$1}' >>out.txt

第二行已翻译; 问题在于定义一个包含 Windows 中 shell 输出的变量:-(

i would like to translate a following script from linux shell to Windows XP shell

GPSID=$(awk '/GPSID/ {print $3}' gora.RTK ) 
awk -v variable=${GPSID} 'BEGIN {printf "Numer seryjny : " variable,$1}' >>out.txt

The second line has been translated; the problem is with defining a variable that contains shell output in windows :-(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

郁金香雨 2024-07-20 02:43:25

好的问题已解决

for /f "tokens=*" %%a in ('awk "/GPSID/ {print $3}" gora.RTK ') do set var=%%a
awk "BEGIN {printf \"GPSID : \" }" >out.txt
echo %var% >>out.txt

此代码基本上完成了我想做的事情。

你太棒了谢谢!!!!

ok problem fixed

for /f "tokens=*" %%a in ('awk "/GPSID/ {print $3}" gora.RTK ') do set var=%%a
awk "BEGIN {printf \"GPSID : \" }" >out.txt
echo %var% >>out.txt

This code basicly does what I wanted to do.

You are great Thanks !!!!!

可是我不能没有你 2024-07-20 02:43:25

如果需要递归查看命令的输出,可以使用for /f。 就像是:

for /f "usebackq" %%L in (`awk '/GPSID/ {print $3}' gora.RTK`) do (
    awk 'BEGIN {printf "Numer seryjny : " %%L,$1}' >> out.txt
)

If you need to recurse through the output of the command, you can use for /f. Something like:

for /f "usebackq" %%L in (`awk '/GPSID/ {print $3}' gora.RTK`) do (
    awk 'BEGIN {printf "Numer seryjny : " %%L,$1}' >> out.txt
)
我三岁 2024-07-20 02:43:25

怎么样...

for /f "tokens=*" %%a in ('echo Hello World') do set var=%%a

注意:在命令行上尝试时使用 %a 而不是 %%a,否则保留它如果在批处理文件中使用,则为 %%a。

其中“echo Hello World”是要捕获其输出的命令,“var”是将存储输出的变量的名称。

How about ...

for /f "tokens=*" %%a in ('echo Hello World') do set var=%%a

NOTE: use %a instead of %%a when trying on the command line else keep it as %%a if using in a batch file.

Where 'echo Hello World' is the command whose output you want to capture and "var" is the name of the variable where the output will be stored.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文