16 lines
188 B
Bash
Executable File
16 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 重启文件监控器
|
|
# ==========================================
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
./stop-watcher.sh
|
|
|
|
# 等待一秒
|
|
sleep 1
|
|
|
|
./start-watcher.sh
|
|
|
|
./status-watcher.sh
|