Add suffixing to do-all-steps

This commit is contained in:
Nico Schottelius 2019-07-23 16:28:19 +02:00
parent ad004bec67
commit b7748997d5
1 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,12 @@ set -x
echo "First source all variables and THEN run this script"
read something
LOG=~/master-thesis/netpfga/log/compile-$(date +%F-%H%M%S)
SUFFIX=""
if [ $# -ge 1 ]; then
SUFFIX="-$1"
fi
LOG=~/master-thesis/netpfga/log/compile-$(date +%F-%H%M%S)$SUFFIX
(