in reply to execut perl script for multiple input folders

G'day lakssreedhar,

That doesn't look like a Perl question at all: please mark it as OT. [In case you didn't know, OT = Off Topic]

The answer will depend on your OS. On a *nix system, I'd probably use for:

$ for i in {1..2}; do echo $i; done 1 2

-- Ken

Replies are listed 'Best First'.
Re^2: execut perl script for multiple input folders
by Anonymous Monk on Jul 19, 2013 at 09:11 UTC

    That doesn't look like a Perl question at all:

    Sure does, why use shell to call perl program when you can just call a perl program?