Help for this page

Select Code to Download


  1. or download this
        $cnt = chmod 0755, 'foo', 'bar';
        chmod 0755, @executables;
    ...
                                                 # --w----r-T
        $mode = '0644'; chmod oct($mode), 'foo'; # this is better
        $mode = 0644;   chmod $mode, 'foo';      # this is best