inotifywait在一个文件中添加多个文件

时间:2014-10-29 09:16:10

标签: bash shell inotifywait

这个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

1 个答案:

答案 0 :(得分:0)

反思我的解决方案并找到一个更适合多次添加

的解决方案
inotifywait -m /srv/watchfolderfilme -e create -e moved_to |
    while read path action file; do
#  echo "The file '$file' appeared in directory '$path' via '$action'"
   chmod 0777 $path$file
   transmission-create -o /srv/newtorrentfiles/$file.torrent -s 16384 -t http://0.0.0.0:6969/announce $path$file
   mv $path$file /srv/downloads
   chmod 0777 /srv/newtorrentfiles/$file.torrent
   cp /srv/newtorrentfiles/$file.torrent /srv/watchfoldertorrents
done