On Friday, June 16, 2000, Chris Costello wrote:
>      while (defined($arguments[0])) {
>              system("ls -l " . $arguments[0]);
>              shift @arguments;
>      }

   Actually, just for style purposes:

     for (; defined($arguments[0]); shift @arguments) {
             # ... parse arguments ...
     }

-- 
|Chris Costello <[EMAIL PROTECTED]>
|This time it will surely run.
`----------------------------------


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to