Updates to scripts etc

This commit is contained in:
Jeff Curless
2025-07-15 15:56:45 -04:00
parent 97a33f2328
commit 399e4a2515
10 changed files with 124 additions and 9 deletions

10
config/update.sh Executable file
View File

@@ -0,0 +1,10 @@
#! /bin/sh
#
for file in $(ls -1 *_config.txt)
do
echo "Processig file: $file"
while read line
do
echo $line
done < $file
done