Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    
    $mode = (stat($file))[2];
    printf "Permissions are %04o\n", $mode & 07777;
    
  2. or download this
    Permissions are 0744