in reply to Running multiple subroutines

I think you might really want something like:

if ( (-e $web_setup) || (-e $webin) || (-e $web_service) ) {

In your code, if $webin or $web_service is defined, and not equal to 0, your if is probably always resolving to TRUE, in which case your subroutines may never execute.

Replies are listed 'Best First'.
Re^2: Running multiple subroutines
by muizelaar (Sexton) on Sep 21, 2007 at 14:37 UTC
    Hi That worked great thanks for your help :)