在bash中捕获inotifywait的输出

时间:2017-10-04 09:29:11

标签: bash inotifywait

在这种情况下,如何捕获inotifywait的输出,这让我发疯。

这是我的代码:

 while inotifywait -q -e  create,delete --format '%T %:e "%f"' --timefmt '%d/%m/%y %H:%M'  "$DIR"
    do
       echo -e "$line" >> /mnt/pidrive1/Digital_Signage/log/"$hostname"_sync.log
       echo -e "Folder contents:" $file_number "files in total: " $folder_list  >> /mnt/pidrive1/Digital_Signage/log/"$hostname"_sync.log
    done

1 个答案:

答案 0 :(得分:2)

实现您想要的更简单的方法是:

while inotifywait <whaveter> >> sync.log
do
   # Nothing
done

如果您需要为输出做额外的事情,可以说:

while out=$(inotifywait <whaveter>)
do
    # Stuff
    # Just use $out normally
done