Help for this page
$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