1
2
3
4
5
6
|
[root@xpleaf right]# umask
005
[root@xpleaf right]# umask
0005
[root@xpleaf right]# touch 005file
[root@xpleaf right]# ls -l 005file
-rw-rw--w-
1
root root
0
7
月
29
12
:
19
005file
|
1
2
3
4
5
6
7
|
[root@xpleaf right]# umask
004
[root@xpleaf right]# umask
0004
[root@xpleaf right]# touch 004file
[root@xpleaf right]# ls -l 004file
总用量
0
-rw-rw--w-
1
root root
0
7
月
29
12
:
21
004file
|
-
对于文件来说,如果umask没有去掉x权限,则系统自动处理掉x权限;
-
对于文件来说,如果umask有去掉x权限,则系统按正常情况去掉相应权限;
-
对于目录来说,则不存在这样的情况。