Created
December 9, 2022 08:41
-
-
Save daig/b078998d09b36df772ed653402d20fab to your computer and use it in GitHub Desktop.
recompile watched files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#sudo apt install inotify-tools | |
inotifywait -m --format "%w%f" -e modify ./ --include *.cpp | | |
while read changed; do | |
echo $changed | |
g++ -std=c++20 $changed && ./a.out; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment