Differences between CHMOD 755 vs 750 permissions s

2020-03-01 04:07发布

I have some files with 755 and i need to change them to 750, but i am not sure if this can affect some process.

I am changin JARs, XMLs, LOGs and properitees files.

Can someone explain to me the difference between these two permission set?

Thanks!

1条回答
一夜七次
2楼-- · 2020-03-01 04:23

0755 = User:rwx Group:r-x World:r-x

0750 = User:rwx Group:r-x World:--- (i.e. World: no access)

r = read
w = write
x = execute (traverse for directories)
查看更多
登录 后发表回答