Мой простой 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 ответ1

2

Вы не создавали files как массив. Массив нуждается в скобках:

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

Обратите внимание, что он может сломаться, если имена файлов содержат пробелы.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .