iso-profiles/a/bob-rescue/live-overlay/srv/http/cgi-bin/sysinfo.cgi
Frede Hundewadt f1c305133f bob naming
2024-04-28 19:12:17 +02:00

17 lines
No EOL
386 B
Bash

#!/bin/bash
echo "Content-type: text/html"
echo ""
echo "<html><head><title>sysinfo"
echo "</title></head><body>"
echo "<h1>General system information for host $(hostname -s)</h1>"
echo ""
echo "<h2>Memory Info</h2>"
echo "<pre> $(free -m) </pre>"
echo "<h2>Disk Info:</h2>"
echo "<pre> $(df -h) </pre>"
echo "<center>Information generated on $(date)</center>"
echo "</body></html>"