bash – 如何将目录文件存储到数组中?

前端之家收集整理的这篇文章主要介绍了bash – 如何将目录文件存储到数组中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图将文件列表存储到一个数组中,然后再循环遍历数组。
下面是我从控制台运行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

尝试:
#! /bin/bash

i=0
while read line
do
    array[ $i ]="$line"        
    (( i++ ))
done < <(ls -ls)

echo ${array[1]}

在您的版本中,while运行在subshel​​l中,您在循环中修改的环境变量在其外部不可见。

(请记住,解析ls的输出通常是not a good idea at all.)

原文链接:https://www.f2er.com/bash/388861.html

猜你在找的Bash相关文章