Skip to content

Instantly share code, notes, and snippets.

@mtholder
Created January 4, 2023 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mtholder/27d1a665085b0f37725063ba86acbf12 to your computer and use it in GitHub Desktop.
Save mtholder/27d1a665085b0f37725063ba86acbf12 to your computer and use it in GitHub Desktop.
server side custom synth hiding
#!/bin/sh
set -x
d=prev-`date +"%d-%b-%Y"`
if ! test -d "$d" ; then
mkdir "$d" || exit
fi
if ! test -d "${d}/results" ; then
mkdir "${d}/results" || exit
fi
if ! test -d "${d}/wrappers" ; then
mkdir "${d}/wrappers" || exit
fi
mv results/* "${d}/results"
mv wrappers/* "${d}/wrappers"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment