Here's a quick template script for doing twoor more files like this, just replace the ? lines with shell statements that extract and work on the files:

Code:

break on

$folder = "."

$files = "x.tmp", "y.tmp", "z.tmp"

for each $file in $files

if exist($folder + "\" + $file) = 0

? "pkunzip $file from somwhere to $folder\$file"
? "run shell on $folder\$file"

endif

next



Its a start,

-Shawn