在后台运行 inotify 脚本
Posted
技术标签:
【中文标题】在后台运行 inotify 脚本【英文标题】:Run a intotify sricpt in background 【发布时间】:2017-01-03 08:58:21 【问题描述】:如何在后台同时运行 12 个 bash 脚本?
这就是脚本:
#/bin/bash
while inotifywait -e close_write /var/www/html/wp-content/QM-Handbuch /01-Inhaltsverzeichnis.doc;
do soffice --headless --convert-to pdf /var/www/html/wp-content/QM-Handbuch/01-Inhaltsverzeichnis.doc &&
sudo mv /var/www/html/wp-content/QM-Handbuch/01-Inhaltsverzeichnis.pdf /var/www/html/wp-content
【问题讨论】:
【参考方案1】:使用 & 符号可以在后台运行 bash 脚本。
语法:-
<prompt> $ bash <file name> &
例子:-
<prompt> $ bash inotify.sh &
【讨论】:
以上是关于在后台运行 inotify 脚本的主要内容,如果未能解决你的问题,请参考以下文章