On System page: http://perldoc.perl.org/functions/system.html there is error regarding the phrase: "To get the actual exit value, shift right by eight (see below).". The code shows: elsif ($? & 127) { This is a bitwise And, not a Shift Right. The code should read: elsif ($? >> 8) { Cheers, G.BoyceThread Next