Linux Bash Faça algo quando o arquivo mudar

while inotifywait -e close_write myfile.py; do ./myfile.py; done
The Code Doctor