in reply to Re^2: system() - output folder?
in thread system() - output folder?

you can chdir to $output before you do your system call.

if you save your current workdir (Cwd - getcwd) before that chdir, you can chdir back to the previous workdir afterwards, if necessary.

update: minor text changes, so it is (hopefully) more precise

Replies are listed 'Best First'.
Re^4: system() - output folder?
by lil_v (Sexton) on Jul 18, 2008 at 20:00 UTC
    thx...it works great!