#! /bin/bash
# Last edited on 2021-12-04 03:55:18 by stolfi

srcdir="$1"; shift
mus=( $@ )

today=`yyyy-mm-dd-hhmmss`

dstdir=${today}/tcon-graphs
mkdir -p ${dstdir}

for mu in ${mus[@]} ; do 
  mu2=`printf "%02d" "${mu}"`
  cp -av ${srcdir}/hotfill_perf_mb${mu}.png ${dstdir}/mb${mu2}.png
done

