全部博文(136)
分类: LINUX
2008-12-09 22:34:38
[yuechaotian@localhost ~]$ pwd /home/yuechaotian [yuechaotian@localhost ~]$ mkdir test [yuechaotian@localhost ~]$ touch test.txt [yuechaotian@localhost ~]$ ll 总用量 8 drwx--x--x 3 root root 4096 12月 7 14:52 study drwxrwxr-x 2 yuechaotian yuechaotian 4096 12月 9 22:18 test -rw-rw-r-- 1 yuechaotian yuechaotian 0 12月 9 22:18 test.txt |
[yuechaotian@localhost ~]$ umask 0002 |
[yuechaotian@localhost ~]$ rm -r t* [yuechaotian@localhost ~]$ umask 000 [yuechaotian@localhost ~]$ umask 0000 [yuechaotian@localhost ~]$ mkdir test [yuechaotian@localhost ~]$ touch test.txt [yuechaotian@localhost ~]$ ll 总用量 8 drwx--x--x 3 root root 4096 12月 7 14:52 study drwxrwxrwx 2 yuechaotian yuechaotian 4096 12月 9 22:27 test -rw-rw-rw- 1 yuechaotian yuechaotian 0 12月 9 22:27 test.txt |
[yuechaotian@localhost ~]$ head -12 /etc/bashrc | tail -5 if [ "`id -gn`" = "`id -un`" -a `id -u` -gt 99 ]; then umask 002 else umask 022 fi |