RE: exec in loop

2003-02-10 Thread Bob Showalter
Aman Raheja wrote: Hi friends I am doing exec in a foreach loop, resizing images. But as the the exec is kicked off, it never returns What's the way out? Here's the snippet --- foreach(@$ref){ $imgFile =

RE: exec in loop

2003-02-10 Thread Dan Muey
I think exec effectively exits your perl script, you might try system, do, backticks or Use the imagemagic module to do all of this for you. perldoc -f exec perldoc -f system Dan Hi friends I am doing exec in a foreach loop, resizing images. But as the the exec is kicked off, it never

RE: exec in loop

2003-02-10 Thread wiggins
On Mon, 10 Feb 2003 14:48:34 -0600, Aman Raheja [EMAIL PROTECTED] wrote: Hi friends I am doing exec in a foreach loop, resizing images. But as the the exec is kicked off, it never returns What's the way out? Here's the snippet