uptime - fingered - Fingerd protocol daemon, allowing custom responses.
(HTM) git clone git://jay.scot/fingered
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
uptime (135B)
---
1 #!/bin/sh
2
3 # Print the current date
4 echo "Current date: $(date)"
5
6 # Print system uptime
7 uptime=$(uptime)
8 echo "System uptime: $uptime"