home/bin/motd.sh

11 lines
286 B
Bash
Raw Normal View History

2019-01-18 22:11:25 +01:00
#!/bin/ash
2019-01-18 22:29:20 +01:00
# this one is creating my /etc/motd file via cron to get some network
# statistics when logging in to my servers.
2023-06-01 09:56:04 +02:00
#echo "" >> /etc/motd
vnstat -i eth0 -h 24 > /etc/motd
#vnstat -i eth0 -d 7 >> /etc/motd
#vnstat -i eth0 -m 6 >> /etc/motd
#vnstat -i eth0 -y 6 >> /etc/motd
2019-01-18 22:11:25 +01:00