三国纷争
您可以尝试entr在文件更改时运行任意命令的工具。文件示例:$ ls -d * | entr sh -c 'make && make test'要么:$ ls *.css *.html | entr reload-browser Firefox或Changed!在file.txt保存文件时打印:$ echo file.txt | entr echo Changed!对于目录,请使用-d,但您必须在循环中使用它,例如:while true; do find path/ | entr -d echo Changed; done要么:while true; do ls path/* | entr -pd echo Changed; done