假设我有这个目录结构:
DIRECTORY:
.........a
.........b
.........c
.........d
我想做的是:我想将目录的元素存储在数组中
就像是 : array = ls /home/user/DIRECTORY
所以它array[0]
包含第一个文件的名称(即'a')
array[1] == 'b'
等等
感谢帮助
你不能简单地做array = ls /home/user/DIRECTORY
,因为 - 即使使用正确的语法 - 它也不会给你一个数组,而是一个你必须解析的字符串,并且解析ls
会受到法律的惩罚。但是,您可以使用内置的 Bash 构造来实现您想要的:
#!/usr/bin/env bash
readonly YOUR_DIR="/home/daniel"
if [[ ! -d $YOUR_DIR ]]; then
echo >&2 "$YOUR_DIR does not exist or is not a directory"
exit 1
fi
OLD_PWD=$PWD
cd "$YOUR_DIR"
i=0
for file in *
do
if [[ -f $file ]]; then
array[$i]=$file
i=$(($i+1))
fi
done
cd "$OLD_PWD"
exit 0
这个小脚本将所有可以在$YOUR_DIR
名为array
.
希望这可以帮助。
选项 1,手动循环:
dirtolist=/home/user/DIRECTORY
shopt -s nullglob # In case there aren't any files
contentsarray=()
for filepath in "$dirtolist"/*; do
contentsarray+=("$(basename "$filepath")")
done
shopt -u nullglob # Optional, restore default behavior for unmatched file globs
选项 2,使用 bash 数组技巧:
dirtolist=/home/user/DIRECTORY
shopt -s nullglob
contentspaths=("$dirtolist"/*) # This makes an array of paths to the files
contentsarray=("${contentpaths[@]##*/}") # This strips off the path portions, leaving just the filenames
shopt -u nullglob # Optional, restore default behavior for unmatched file globs
array=($(ls /home/user/DIRECTORY))
然后
echo ${array[0]}
将等于该目录中的第一个文件。