#!/usr/bin/env bash
# INRA\Olivier Vitrac - rev. 2019/09/11

local=$(pwd);
www="/home/`whoami`/Bulk/fitness2020/www"
destination=$www/zip
excluded="-type f ( ! -iname *.zip -a ! -iname *.pptx )"
option="full"
cd $www
find . $excluded | zip -rTgp -9 "${destination}/FITNESS__${option}_$(hostname)_`date +"%Y_%m_%d__%H-%M"`.zip" -@
cd $local
