# Should only `chown` and `chmod` the new files and permissionly modified ones.
./update.py; chown www-data:www-data . -R; chmod 770 . -R
#time ./update.py; chown www-data:www-data . -R; chmod 770 . -R
# next line doesn't seem to work as expected maybe because of time, this time should be included in the python script
#time ./update.py > >(tee -a logs.txt) 2> >(tee -a logsErr.txt >&2); chown www-data:www-data . -R; chmod 770 . -R
#time ./update.py >> log.txt; chown www-data:www-data . -R; chmod 770 . -R
#time ./update.py | tee -a log.txt; chown www-data:www-data . -R; chmod 770 . -R
# I have the feeling that `tee -a` requires us to wait the end of the execution of `update.py` to get `stdout` (no continuous output).
