flutterfungus wooo

This commit is contained in:
2025-06-03 03:29:35 -06:00
commit de38762552
35 changed files with 1398 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
numlogs=500
tmp_log="./chrony_statistics.log"
sudo tail -n $numlogs /var/log/chrony/statistics.log > $tmp_log
sudo chown $USER:$USER $tmp_log
echo "$(wc -l $tmp_log) logs entered"
python chrony_statistics.py
rm -f $tmp_log