1. 程式人生 > >linux中 chmod +x 和 chmod u+x的區別

linux中 chmod +x 和 chmod u+x的區別

通過man查詢可知:

u 代表使用者.
g 代表使用者組.
o 代表其他.
a 代表所有.

這意味著chmod u+x somefile 只授予這個檔案的所屬者執行的許可權
而 chmod +x somefile 和 chmod a+x somefile 是一樣的
Just doing +x will apply it to all flags: [u]ser, [g]roup, [o]thers.