这个 shell 脚本应该将文件夹中的所有内容添加到传输中。使用一个文件夹可以正常工作,但是当我同时添加多个文件夹时,它会忽略第二个文件夹。
while true;
do
file=$(inotifywait -e moved_to --format %f /srv/watchfolderfilme)
file="/srv/watchfolderfilme/$file"
transmission-create -o $file.torrent -s 16384 -t http://0.0.0.0:6969/announce $file
mv $file /srv/downloads
chmod 0777 $file.torrent
cp $file.torrent /srv/newtorrentfiles
mv $file.torrent /srv/watchfoldertorrents
done