gpt4 book ai didi

bash - 如何在 Bash 中运行多个 inotifywait 循环?

转载 作者:行者123 更新时间:2023-11-29 09:46:05 25 4
gpt4 key购买 nike

我有一个脚本作为监听文件的守护进程运行:

#!/bin/bash
echo '1'
while inotifywait -e close_write /home/homeassistant/.homeassistant/automations.yaml
do
echo 'automations'
curl -X POST -H "x-ha-access: pass" -H "Content-Type: application/json" http://hassbian.local:8123/api/services/automation/reload
done;

我想听几个文件,并尝试添加两个循环:

while inotifywait -e close_write /home/homeassistant/.homeassistant/groups.yaml
do
echo 'gropus'
curl -X POST -H "x-ha-access: pass" -H "Content-Type: application/json" http://hassbian.local:8123/api/services/group/reload
done;

while inotifywait -e close_write /home/homeassistant/.homeassistant/core.yaml
do
echo 'core'
curl -X POST -H "x-ha-access: pass" -H "Content-Type: application/json" http://hassbian.local:8123/api/services/homeassistant/reload_core_config
done;

我意识到第一个循环永远不会关闭,所以其他循环永远不会开始,但不确定我应该如何解决这个问题。

最佳答案

您需要在后台进程中运行第一个循环,这样它就不会阻塞您的脚本。您可能希望在后台运行每个 循环以实现对称,然后在脚本末尾等待它们。

while inotifywait -e close_write /home/homeassistant/.homeassistant/groups.yaml
do
echo 'gropus'
curl -X POST -H "x-ha-access: pass" -H "Content-Type: application/json" http://hassbian.local:8123/api/services/group/reload
done &

while inotifywait -e close_write /home/homeassistant/.homeassistant/core.yaml
do
echo 'core'
curl -X POST -H "x-ha-access: pass" -H "Content-Type: application/json" http://hassbian.local:8123/api/services/homeassistant/reload_core_config
done &

wait

但是,您可以在监控模式下运行 inotifywait 并监控多个文件,将其输出管道化到一个循环中。 (警告:与任何面向行的输出格式一样,这无法处理包含换行符的文件名。请参阅 --format--csv 选项来处理包含空格的文件名。 )

files=(
/home/homeassistant/.homeassistant/groups.yaml
/home/homeassistant/.homeassistant/core.yaml
)

take_action () {
echo "$1"
curl -X POST "x-ha-access: pass" -H "Content-Type: application/json" \
http://hassbian.local:8123/api/services/"$2"
}

inotifywait -m -e close_write "${files[@]}" |
while IFS= read -r fname _; do
case $fname in
*/groups.yaml) take_action "groups" "group/reload" ;;
*/core.yaml) take_action "core" "homeassistant/reload_core_config" ;;
sac
done

关于bash - 如何在 Bash 中运行多个 inotifywait 循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44292040/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com