📌  相关文章
📜  shell 脚本将命令输出存储在变量中 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:56.281000             🧑  作者: Mango

代码示例4
#Just use following structure to store output of command into a variable:
var=$(command)
#For example:
var=$(echo 'hi')    #store hi into var
var=$(ls)    #store list of files into var