Здравствуйте, уважаемые! Стоит motion, пишет видео и фото по движению с камеры. Пытаюсь по мануалу реализовать отправку e-mail с видео по окончанию его записи.
Вот как выглядит в конфиге:
# Command to be executed when a movie file (.mpg|.avi) is closed. (default: none)
# To give the filename as an argument to a command append it with %f
; on_movie_end send_mail /home/seventh/motion_alert.sh / “/путь к директории с файлами/motion/%d.
; on_movie_end sh /home/seventh/motion_alert.sh /путь к директории с файлами/motion/%d.%m.%Y-%H.%M.%S-%v (так генерируются названия видеофайлов по моему конфигу)
on_movie_end sh /home/seventh/motion_alert.sh
#!/bin/sh
#Destination e-mail address
TO=”mail@example.com”
#Subject of the e-mail
SUBJECT=”Motion detected”
echo ‘Email body text goes here’ | mutt -a $f -s $SUBJECT $TO
Получаю ошибки вида
/home/seventh/motion_alert.sh: 6: /home/seventh/motion_alert.sh: detected”: not found
mutt: ключ должен использоваться с аргументом — «a»
или
/home/seventh/motion_alert.sh: 6: /home/seventh/motion_alert.sh: detected”: not found
Не удалось получить информацию о /путь к директории с файлами/motion/%f: Нет такого файла или каталога
/путь к директории с файлами/motion/%f: не удалось вложить файл.
Как грамотно передать название свежесозданного видеофайла скрипту?