Initial commit

This commit is contained in:
Charlie Root 2025-03-01 00:58:18 +01:00
commit 529efd53a1
140 changed files with 10310 additions and 0 deletions

11
rrdtools/rrd-generate.sh Executable file
View file

@ -0,0 +1,11 @@
#!/bin/sh
MYDIR=`dirname $0`
cd ${MYDIR}
for PRG in `ls scripts/*.sh`; {
sh ${PRG} && echo $PRG
}