Help for this page

Select Code to Download


  1. or download this
    sub return_mode { 
        my $mode = shift; 
    ...
        return join('', @modelist); 
    }
    
  2. or download this
    sub return_mode {
      sprintf "%04o", (shift) & 07777;
    }