linux shell脚本将命令执行结果赋值给变量

使用$( )
例子:a=$(echo “hello world”)
将命令echo "hello world"的输出赋给变量a

你可能感兴趣的:(shell,linux)