문제

On MacOS, what are the default and preferred permissions for ~/.bash and ~/.bash_profile config profiles?

This guide shows 700 as preferred.

To view permission for a file: private stat -f "%Lp %N" ~/.bashrc

Permissions guide.

도움이 되었습니까?

해결책

bashrc and bash_profile are read by bash and do not require the execute bit to be set. Nor do either require the execute bit set when sourcing the file in your current bash session. That said, an octal representation of 600 would be my choice.

The default permissions set on a file is governed by umask.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 apple.stackexchange
scroll top