blob: be2dda0f7a9be4db88cd5a5243bf9115d8d8883a (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/sh
set -xeuo pipefail
for i in fiveminutes fivegraph hours hoursgraph days months years top summary hsummary vsummary
do
vnstati --transparent --iface $1 --output $i.png --$i
done
|