[init] initial commit

This commit is contained in:
2023-06-05 23:04:30 +08:00
commit 66b1dd4d70
72 changed files with 10079 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#!/bin/bash
inotifywait -mrq -e create,delete,move,close_write /opt/source-code/document/python | while read directory action filename; do
echo ====================================================
echo `date`
echo $directory$filename $action
rm -rf /opt/websites/just-the-docs/python
jekyll b -s /opt/source-code/document/python -d /opt/websites/just-the-docs/python
echo -e '\n'
done