amxmodx/plugins/compile.sh

7 lines
229 B
Bash
Raw Normal View History

2004-01-31 23:56:22 +03:00
#!/bin/bash
test -e compiled || mkdir compiled
ls *.sma | xargs -i ./sc \{\} -ocompiled/\{\} > temp.txt
ls compiled/*.sma | xargs -i basename \{\} .sma | xargs -i mv compiled/\{\}.sma compiled/\{\}.amx
more temp.txt
rm temp.txt