File: autoreload.sh

package info (click to toggle)
python-rst2ansi 0.1.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 228 kB
  • sloc: python: 781; sh: 16; makefile: 16
file content (7 lines) | stat: -rwxr-xr-x 140 bytes parent folder | download
1
2
3
4
5
6
7
clear
export PYTHONPATH=.
while true;
    do inotifywait -e modify out.rst 2>/dev/null >/dev/null
    clear
    ./bin/rst2ansi out.rst
done