|
发表于 2004-11-24 10:04:51
|
显示全部楼层
chgrp 命令就行
root@S31:/home/beinan# ls -lh my.txt
-rw-r--r-- 1 beinan users 0 2004-11-23 20:26 my.txt
root@S31:/home/beinan# chgrp root my.txt
root@S31:/home/beinan# ls -lh my.txt
-rw-r--r-- 1 beinan root 0 2004-11-23 20:26 my.txt |
|