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!
Join Stack Overflow to learn, share knowledge, and build your career.
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!
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)
Group and World?
– rm -rf
Dec 18 '17 at 13:31
r-w access. World would mean anyone else that can log in to that particular machine.
– AruniRC
Jan 29 at 19:15