gpt4 book ai didi

linux - 将命令的输出重定向到 Linux 中的变量

转载 作者:太空宇宙 更新时间:2023-11-04 11:06:15 25 4
gpt4 key购买 nike

你好,我试过像这样将命令 grep -c ' language=\"*\"' sample_pos.xml 的输出保存到变量 var1 但它不起作用-

var=grep -c ' language=\"*\"' sample_pos.xml

获取错误:

./PVT.sh: line 2: -c: command not found

最佳答案

使用命令替换:

  variable=`grep -c ' language=\"*\"' sample_pos.xml`

  variable=$(grep -c ' language=\"*\"' sample_pos.xml)

关于linux - 将命令的输出重定向到 Linux 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25157825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com