Bash 扩展了数组,而它应该只使用一个元素

Bash 扩展了数组,而它应该只使用一个元素

我的简单 bash 脚本用于获取 Raspberry Pi 上超过一分钟的图像:

#!/bin/bash

time=`date +"%FT%H_%M_%S"`
imagedir="/root/pilapse/images/"
files=`ssh pi find /home/pi/weatherPi-images/ -type f -mmin +1`

echo -e "\033[1;32mFetching images from Raspberry Pi\033[1;00m"

for currFile in "${files[@]}"; do
   echo -e "rsync -a --remove-source-files --info=progress2 -e ssh pi:$currFile $imagedir\n"
done

echo -e "rsync [...]"这里只是一个用于调试的占位符。

预期输出:

rsync -a --remove-source-files --info=progress2 -e ssh pi:/home/pi/weatherPi-images/2016-02-01T13_22_20.jpg /root/pilapse/images/
rsync -a --remove-source-files --info=progress2 -e ssh pi:/home/pi/weatherPi-images/2016-02-01T13_14_07.jpg /root/pilapse/images/

实际产量:

rsync -a --remove-source-files --info=progress2 -e ssh 

horizon:/home/pi/weatherPi-images/2016-02-01T13_22_20.jpg
    /home/pi/weatherPi-images/2016-02-01T13_14_07.jpg
    /home/pi/weatherPi-images/2016-02-01T13_18_45.jpg
    /home/pi/weatherPi-images/2016-02-01T13_13_37.jpg /root/pilapse/images/

不知何故,bash 似乎在这里扩展了数组,但为什么呢?据我了解,上面的 foreach 循环currFile仅包含一条路径。

答案1

您没有创建files数组。数组需要括号:

files=(`ssh pi find /home/pi/weatherPi-images/ -type f -mmin +1`)

请注意,如果文件名包含空格,它可能会中断。

相关内容