X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fsystem%2Fwrite_uptime_report.sh;fp=scripts%2Fsystem%2Fwrite_uptime_report.sh;h=e5dfb35571fb3e8e1a1c3031f57fe4fad9f4b67e;hb=9822bd6f2cdfe1fa0b5e7e7721f9a2bcccc66f4f;hp=b4a35c174724d0f6fe611b33f12be8a47f7ce5c8;hpb=4908d5a2cc83f7622e196c1756b5d5e1e03f612a;p=feisty_meow.git diff --git a/scripts/system/write_uptime_report.sh b/scripts/system/write_uptime_report.sh index b4a35c17..e5dfb355 100644 --- a/scripts/system/write_uptime_report.sh +++ b/scripts/system/write_uptime_report.sh @@ -1,6 +1,7 @@ #!/bin/bash # writes an uptime report to a file in the home directory which is named # after the current machine's hostname. +source "$FEISTY_MEOW_DIR/scripts/core/functions.sh" export hosty=$(hostname | sed -e 's/^\([^.]*\).*$/\1/') export REPORT_FILE="$HOME/${hosty}_uptime.log" -echo "$($BINDIR/mdate) -- $(uptime)" >>"$REPORT_FILE" 2>&1 +echo "$(date_stringer) -- $(uptime)" >>"$REPORT_FILE" 2>&1