Skip to content

Instantly share code, notes, and snippets.

@allyusd
Last active January 13, 2022 19:22
Show Gist options
  • Save allyusd/f81810bbdd08eee5382e4634158219c6 to your computer and use it in GitHub Desktop.
Save allyusd/f81810bbdd08eee5382e4634158219c6 to your computer and use it in GitHub Desktop.
arch linux auto build qt project when file modify use inotify-tools
#!/bin/sh
while true
do
inotifywait -e modify -r .
qmake -project
qmake
make
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment