gpt4 book ai didi

linux - shell脚本中&和()的使用

转载 作者:太空宇宙 更新时间:2023-11-04 05:04:35 24 4
gpt4 key购买 nike

以下命令取自 shell 脚本,

( ST1=`date`; class_name -C file.cfg    $* > output.log 2>&1; echo START: $ST1 >> output2.log; echo END: `date` >> output2.log) &
  1. 在上面的 shell 脚本中,有几个命令,在 () 中用 ; 分隔。Google 搜索显示它用于数组,但 shell 脚本并未将输出分配给任何内容。 () 可能有什么用途?
  2. 末尾的&有什么用?

最佳答案

And there are few commands, seperated by ; inside (). Google search says that it is used for array, but the shell script is not assigning the output to anything. What probably could be the use of ()?

() 就像编程中的一段代码。给变量设置的值不会影响全局变量。

例如,请参阅以下 sh 脚本:

a=1;  
(
a=2; #This value is for a in local ()
echo $a; #print 2
)
echo $a; #print 1

它将打印:

2
1

关于linux - shell脚本中&和()的使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20394103/

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