stopped needing mdate to be built by using date stringer instead.
[feisty_meow.git] / scripts / system / write_uptime_report.sh
index b4a35c174724d0f6fe611b33f12be8a47f7ce5c8..e5dfb35571fb3e8e1a1c3031f57fe4fad9f4b67e 100644 (file)
@@ -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