#! /bin/bash
# Last edited on 2023-06-12 23:39:01 by stolfi

options=( "$@" )

rsync -avzu \
  ${options[@]} \
  --exclude '*~' \
  --exclude '*-f-*.png' \
  --exclude '*-m-*.png' \
  --exclude 'JUNK' \
  --exclude '__pycache__' \
  --exclude 'main-[0-9][.][0-9][0-9][0-9][0-9].png' \
  --exclude 'main-w-[0-9][.][0-9][0-9][0-9][0-9].png' \
  ./ \
  ${SMAN}:posters/ 
  
