当我保存文件时如何执行文件/脚本

当我保存文件时如何执行文件/脚本

例如;

#!/bin/python3
print("Hail Hydra")

python3 *filename.py那么,当我保存此文件时,如何在不在我的终端上输入的情况下执行此文件

答案1

首先使用以下方法安装 inotify-tools

sudo apt-get 安装 inotify-tools

现在运行

inotifywait -q -m -e close_write --format %e test.py | 读取事件时;执行 python3 test.py;完成

其中 test.py 是你的 python 脚本

答案2

你可以做到可执行文件通过发出以下命令:

chmod u+x filename.py

然后您可以通过输入来运行脚本

./filename.py

...其中./只是表示该文件位于当前目录中。

相关内容