From bc15313677175fc3fc25efc89e992496ed5f959e Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Mon, 10 Jul 2017 03:29:05 +0200 Subject: [PATCH] also reporting DAMASK version and os information --- DAMASK_prerequisits.sh | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/DAMASK_prerequisits.sh b/DAMASK_prerequisits.sh index 56a2f7e40..fccd63ead 100755 --- a/DAMASK_prerequisits.sh +++ b/DAMASK_prerequisits.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash OUTFILE="system_report.txt" -echo date +"%m-%d-%y" >OUTFILE +echo date +"%m-%d-%y" >$OUTFILE # redirect STDOUT and STDERR to logfile # https://stackoverflow.com/questions/11229385/redirect-all-output-in-a-bash-script-when-using-set-x^ @@ -14,12 +14,21 @@ DAMASK_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" echo ============================================================================================== echo DAMASK settings echo ============================================================================================== -echo DAMASK_ROOT: $DAMASK_ROOT +echo DAMASK_ROOT: +echo $DAMASK_ROOT +echo +echo Version: +cat VERSION echo echo Settings in CONFIG: cat CONFIG echo echo ============================================================================================== +echo System +echo ============================================================================================== +uname -a +echo +echo ============================================================================================== echo Python echo ==============================================================================================