Initial Commit

This commit is contained in:
2025-11-23 12:59:01 +00:00
parent 8e4366ce13
commit 063d31d787
3 changed files with 449 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/bash
UPTIME_PRETTY=$(uptime -p)
UPTIME_FORMATTED=$(echo "$UPTIME_PRETTY"| sed 's/^up //;s/,*$//;s/minute/m/; s/hour/h/; s/day/d/; s/s//g')
echo "$UPTIME_FORMATTED"