in reply to MoveCeiling - monitor filesystem growth
Unquoted string "true" may clash with future reserved word at 555648.p +l line 98. Bareword found in conditional at 555648.pl line 146. main::showUsage() called too early to check prototype at 555648.pl lin +e 27. main::spinUpRoutine() called too early to check prototype at 555648.pl + line 32. main::mainRoutine() called too early to check prototype at 555648.pl l +ine 33. main::spinDownRoutine() called too early to check prototype at 555648. +pl line 34. Name "main::targetVGSpaceRemaiing" used only once: possible typo at 55 +5648.pl line 127.
Your program requires seven arguments so why are you obfuscating that fact?if ($#ARGV!=6)
All of your subroutines except spinDownRoutine() are only called once. Subroutines are very handy if you have to encapsulate data and code that has to be used multiple times however you are neither encapsulating the data in the subroutine nor using them more than once so why put everything in subroutines?if ( @ARGV != 7 )
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: MoveCeiling - monitor filesystem growth
by bpoag (Monk) on Jun 16, 2006 at 18:10 UTC |