master > master: workflow scripts hinzugefügt

This commit is contained in:
RD
2021-10-30 10:18:24 +02:00
parent 5b17c2ce35
commit f01710b445
6 changed files with 979 additions and 0 deletions

19
scripts/clean.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
##############################################################################
# DESCRIPTION: Script for cleaning-processes.
#
# Usage:
# ~~~~~~
# ./clean.sh [options]
##############################################################################
SCRIPTARGS="$@";
FLAGS=( $@ );
ME="scripts/clean.sh";
source scripts/.lib.sh;
run_clean_artefacts;
exit 0;