我试图将文件列表存储到一个数组中,然后再循环遍历数组。
下面是我从控制台运行ls -ls命令时得到的。
下面是我从控制台运行ls -ls命令时得到的。
total 40 36 -rwxrwxr-x 1 amit amit 36720 2012-03-31 12:19 1.txt 4 -rwxrwxr-x 1 amit amit 1318 2012-03-31 14:49 2.txt
我写的以下bash脚本将上述数据存储到一个bash数组中。
i=0 ls -ls | while read line do array[ $i ]="$line" (( i++ )) done
但是当我回显$ array,我什么也没有!
FYI,我以这种方式运行脚本:./bashscript.sh
尝试:
原文链接:https://www.f2er.com/bash/388861.html#! /bin/bash i=0 while read line do array[ $i ]="$line" (( i++ )) done < <(ls -ls) echo ${array[1]}
在您的版本中,while运行在subshell中,您在循环中修改的环境变量在其外部不可见。
(请记住,解析ls的输出通常是not a good idea at all.)