You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

9 lines
333 B

  1. #!/bin/bash
  2. while true ; do
  3. STATS="<h1>Uptime</h1>$(uptime)\n<h1>Inode and disk usage</h1>$(df -ih)\n<h1>Mem usage</h1>$(free -h)\n<h1>Syslog</h1>$(tail -n 15 /var/log/syslog)\r\n\r\n"
  4. LEN=$(printf "%s" "$STATS" | wc -c)
  5. RES="HTTP/1.1 200OK\r\nContent-Length: $LEN\r\n\r\n"
  6. echo -e "$RES$STATS"| nc -l -p 1500;
  7. done