12 lines
154 B
PostScript
12 lines
154 B
PostScript
|
|
||
|
@echo off;
|
||
|
|
||
|
string $cmd = "script EmptyKeg\\EmptyKeg.eps";
|
||
|
|
||
|
int $i = 1;
|
||
|
while($i < $argc) {
|
||
|
$cmd = "$cmd $argv[$i]";
|
||
|
$i++;
|
||
|
}
|
||
|
|
||
|
return `$cmd`;
|