Skip to content

Instantly share code, notes, and snippets.

@daig
Created December 9, 2022 08:41
Show Gist options
  • Save daig/b078998d09b36df772ed653402d20fab to your computer and use it in GitHub Desktop.
Save daig/b078998d09b36df772ed653402d20fab to your computer and use it in GitHub Desktop.
recompile watched files
#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