PROCESOS
top -l1 -u -o cpu -S
PROCESOS
top -l 2 | awk '/CPU usage/ && NR > 5 {print $1, ":", $3, $4, $5, $6, $7, $8}'
UPTIME,RAM Y CPU
uptime | awk '{print "UPTIME : " $3 " " $4 " " $5 }' | sed -e 's/.$//g'; \
top -l 1 | awk '/PhysMem/ {print "RAM : " $8 " "}' ; \
top -l 2 | awk '/CPU usage/ && NR > 5 {print $1, ":", $3, $4, $5, $6, $7, $8}'
CALENDARIO
cal
DIA DE LA SEMANA
date +%A
DIA DEL MES
date +%d
IP INTERNA
echo "I: " `ifconfig en1 | grep inet | grep -v inet6 | awk '{print $2}'`
IP EXTERNA
echo "E: " `curl --silent checkip.dyndns.org | awk '{print $6}' | sed "s/\(.*\)\<\/body\>\<\/html\>/\1/"`
d4rkb1t, he conseguido que me aparezca la imagen, pero no así la temperatura etc. El comando es el siguiente:
curl -o /tmp/weather.html http://weather.yahoo.com/spain/madrid/fuenlabrada-20079677/?unit=c; curl -o /tmp/currenttemp.png `grep "div\ class=\"forecast-icon\"\ style=\"background:url" /tmp/weather.html | awk -F"'" '{ printf $2 }'`
¿ves algún error?
Gracias.