在背景上运行inotifywait

时间:2013-09-19 17:47:29

标签: bash inotify inotifywait

我从linuxaria.com复制了这段代码作为示例,在我的情况下正常工作问题是当我从终端inotifywait停止时。我想要在退出终端后跑回地面。我怎么能这样做?

#!/bin/sh

# CONFIGURATION
DIR="/tmp"
EVENTS="create"
FIFO="/tmp/inotify2.fifo"


on_event() {
  local date=$1
  local time=$2
  local file=$3

  sleep 5

  echo "$date $time Fichier créé: $file"
}

# MAIN
if [ ! -e "$FIFO" ]
then
  mkfifo "$FIFO"
fi

inotifywait -m -e "$EVENTS" --timefmt '%Y-%m-%d %H:%M:%S' --format '%T %f' "$DIR" >       "$FIFO" &
INOTIFY_PID=$!


while read date time file
do
  on_event $date $time $file &
done < "$FIFO"

4 个答案:

答案 0 :(得分:5)

您可以使用screennohup运行脚本,但我不确定这会有什么帮助,因为脚本似乎没有将其输出记录到任何文件。

nohup bash script.sh </dev/null >/dev/null 2>&1 &

或者

screen -dm bash script.sh </dev/null >/dev/null 2>&1 &

也可以申请:

bash script.sh </dev/null >/dev/null 2>&1 & disown

您应该测试终端退出时哪一个不允许命令暂停或挂起。

如果要将输出记录到文件中,可以尝试以下版本:

nohup bash script.sh </dev/null >/path/to/logfile 2>&1 &
screen -dm bash script.sh </dev/null >/path/to/logfile 2>&1 &
bash script.sh </dev/null >/path/to/logfile 2>&1 & disown

答案 1 :(得分:5)

我用它做了“服务”。所以我可以像普通服务一样停止/启动它,并且它会在重启后启动:

这是在Centos发行版上制作的,所以如果它立刻适用于其他发行版,我就不会这样做。

在服务目录

中创建一个执行权限为的文件

/etc/init.d/中的服务名

#!/bin/bash

# chkconfig: 2345 90 60

case "$1" in
start)
   nohup SCRIPT.SH > /dev/null 2>&1 &
   echo $!>/var/run/SCRIPT.SH.pid
   ;;
stop)
   pkill -P `cat /var/run/SCRIPT.SH.pid`
   rm /var/run/SCRIPT.SH.pid
   ;;
restart)
   $0 stop
   $0 start
   ;;
status)
   if [ -e /var/run/SCRIPT.SH.pid ]; then
      echo SCRIPT.SH is running, pid=`cat /var/run/SCRIPT.SH.pid`
   else
      echo SCRIPT.SH is not running
      exit 1
   fi
   ;;
*)
   echo "Usage: $0 {start|stop|status|restart}"
esac

exit 0

所有内容都应该更改为您的脚本名称。

# chkconfig: 2345 90 60可以在重新启动系统时启动服务。这可能不像在发行版那样在ubuntu中工作。

答案 2 :(得分:1)

用-p替换-m

  

-d -o / dev / null

即:

  

inotifywait -d -o / dev / null -e“ $ EVENTS” --timefmt'%Y-%m-%d%H:%M:%S'--format'%T%f'>” $ DIR“>” $ FIFO“&INOTIFY_PID = $!

您可以在以下位置查看inotifywait帮助手册:

https://helpmanual.io/help/inotifywait/

答案 3 :(得分:0)

我发现的最好方法是创建一个 systemd 服务。

/lib/systemd/system/checkfile.service 中创建 systemd 文件:

sudo vim /lib/systemd/system/checkfile.service

并将其粘贴到此处:

[Unit]
Description = Run inotifywait in backgoround

[Service]
User=ubuntu
Group=ubuntu
ExecStart=/bin/bash /path_to/script.sh
RestartSec=10

[Install]
WantedBy=multi-user.target

/path_to/script.sh 中,您可以这样做:

inotifywait -m /path-to-dir -e create -e moved_to |
    while read dir action file; do
        echo "The file '$file' appeared in directory '$dir' via '$action'" >> /dir/event.txt
    done

确保您的文件可由用户执行:

sudo chmod +x /path_to/script.sh

创建两个文件后,重新加载 systemd 管理器配置:

sudo systemctl daemon-reload

现在您可以对脚本使用启动/停止/启用:

sudo systemctl enable checkfile
sudo systemctl start checkfile

确保在执行前替换文件/目录/用户/组值。