mirror of
https://git.shadowkat.net/izaya/OC-PsychOS2.git
synced 2024-11-10 15:48:36 -05:00
9 lines
195 B
Bash
9 lines
195 B
Bash
|
#!/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
|