mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-03 05:04:43 +00:00
10 lines
251 B
Python
10 lines
251 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import sys
|
||
|
import glob
|
||
|
import os.path
|
||
|
|
||
|
indir = sys.argv[1]
|
||
|
for infile in glob.glob(os.path.join(indir, "*.po")):
|
||
|
print("cadius EXTRACTVOLUME \"" + infile + "\" build/X/ || cadius EXTRACTVOLUME \"" + infile + "\" build/X/")
|