u 若使用者創建爲『檔案』則預設『沒有可執行( x )權限』,亦即只有rw這兩個項目,也就是最大爲 666 分,預設權限以下:-rw-rw-rw-。spa
u 若用戶創建爲『目錄』,則因爲 x 與是否能夠進入此目錄有關,所以默認爲全部權限均開放,亦即爲 777 分,預設權限以下:drwxrwxrwx。orm
[root@localhost tmp]# touch aaaget
[root@localhost tmp]# ll aaa 同步
-rw-r--r--. 1 root root 0 Mar 13 21:05 aaait
[root@localhost tmp]# mkdir bbbio
[root@localhost tmp]# ll -d bbb/class
drwxr-xr-x. 2 root root 6 Mar 13 21:07 bbb/權限
[root@localhost tmp]# umask 222
[root@localhost tmp]# touch aaa.a
[root@localhost tmp]# ll aaa.a
-r--r--r--. 1 root root 0 Mar 13 21:08 aaa.a
[root@localhost tmp]# mkdir bbb.b
[root@localhost tmp]# ll -d bbb.b/
dr-xr-xr-x. 2 root root 6 Mar 13 21:08 bbb.b/
[root@localhost tmp]# umask 033
[root@localhost tmp]# touch aaa.033
[root@localhost tmp]# ll aaa.033
-rw-r--r--. 1 root root 0 Mar 13 21:17 aaa.033
0022