📜  将 ls 存储到数组 bash - Shell-Bash 代码示例

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

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