#! /bin/bash
# Last edited on 2023-09-01 20:18:16 by stolfi

# To be run on "manaus", deletes spurious files from "~/projects/phaistos/00-BACKUPS/"

cd ~/projects/phaistos/00-BACKUPS/

find ./ \
    -type f \
    \( -path '*/align/*/out/*' -o \
       -name '*~' \
    \) \
  > .rmfiles
rm -v `cat .rmfiles`
