325a882c5d
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2767 8092fc87-c524-0410-9efc-e669fe64eaf9
9 lines
92 B
Bash
Executable File
9 lines
92 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DECOMP=./decomp
|
|
|
|
for FILE in *[23459a]; do
|
|
$DECOMP -o "$FILE.out" "$FILE"
|
|
done
|
|
|