|
|
|
|
|
by archycockroach
4007 days ago
|
|
#!/bin/bash
#
# 'High Performance' Server Statistics for Ubuntu
LINEONE=$(landscape-sysinfo | grep Memory | awk 'BEGIN { FS = " " } ; { print $1 }' | tr ' ' '-')
LINETWO=$(landscape-sysinfo | grep System | awk 'BEGIN { FS = " " } ; { print $1 }' | tr ' ' '-')
URL=http://memegen.link/10guy/$LINEONE/$LINETWO.jpg
wget $URL --quiet --output-file /var/www/stonedserverstats.jpg
Demo:
http://memegen.link/10guy/--memory-usage:-45%25/--system-loa... |
|