OC-PsychOS2/mkmods.sh

9 lines
195 B
Bash
Raw Normal View History

2018-11-03 03:05:41 +11:00
#!/bin/bash
for f in service/*; do
nf=$(echo $f | cut -d '/' -f 2)
echo $nf
echo os.spawn\(function\(\) >mod-service/$nf
cat $f >> mod-service/$nf
echo end,\"$nf\"\) >> mod-service/$nf
done