Created
January 4, 2023 16:29
-
-
Save mtholder/27d1a665085b0f37725063ba86acbf12 to your computer and use it in GitHub Desktop.
server side custom synth hiding
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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