我需要阐述shell脚本中数组的以下行为:
想象一下,给出以下内容:
arber@host ~> ls
fileA fileB script.sh
现在我可以执行以下命令:
arber@host ~> ARR=($(ls -d file*))
arber@host ~> echo ${ARR[0]} # start index 0
arber@host ~> echo ${ARR[1]} # start index 1
fileA
arber@host ~> echo ${ARR[2]} # start index 2
fileB
但是当我通过script.sh执行此操作时,它的行为会有所不同(Start Index = 0):
arber@host ~> cat script.sh
#!/bin/bash
ARR=($(ls -d file*))
# get length of an array
aLen=${#ARR[@]}
# use for loop read all items (START INDEX 0)
for (( i=0; i<${aLen}; i++ ));
do
echo ${ARR[$i]}
done
结果如下:
arber@host ~> ./script.sh
fileA
fileB
我使用Ubuntu 18.04 LTS和zsh.有人可以解释一下吗?
解决方法:
Arrays in Bash are indexed from zero和in zsh they’re indexed from one.
但是你不需要像这样的简单用例的索引.循环遍及${array [@]}同时适用于:
files=(file*)
for f in "${files[@]}"; do
echo "$f"
done
在zsh中你也可以使用$files而不是“${files [@]}”,但这在Bash中不起作用. (并且它会删除空数组元素,但是你不会从文件名中获取任何内容.)
另外,不要使用$(ls file *),如果你有带空格的文件名,它会中断(见WordSpliting on BashGuide),并且开始时完全没用.
shell完全能够自己生成文件名.那实际上会发生什么,shell找到名称与文件*匹配的所有文件,将它们传递给ls,然后再将它们打印出来供shell读取和处理.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。