bash - Unable to create a 777 file on Linux -


how can create file (not directory) execution permissions using umask? know files use 666 permissions , directories 777 want create files 766, example.

use chmod change file permissions.

chmod 777 some-file 

or set umask

umask 000 

Comments

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Magento/PHP - Get phones on all members in a customer group -

session - Logging Out Using PHP -