linux 对象 调出r_【转】Linux - chown 中的 -R 参数
1. 查看目錄及當前文件
[root@localhost yuechaotian]# pwd
/home/yuechaotian
[root@localhost yuechaotian]# ll
總用量 8
drwxr-xr-x? 3 root root 4096 12月? 7 14:52 study
drwxr-xr-x? 2 root root 4096 12月? 9 21:43 test
[root@localhost yuechaotian]# ll test
總用量 12
-rwxr-xr-x? 1 root root 11742 12月? 9 21:43 conf.rd
2. 只改變目錄test的用戶及群組,并未改變目錄test下的文件用戶及群組
[root@localhost yuechaotian]# chown yuechaotian:dba test
[root@localhost yuechaotian]# ll
總用量 8
drwxr-xr-x? 3 root??????? root 4096 12月? 7 14:52 study
drwxr-xr-x? 2 yuechaotian dba? 4096 12月? 9 21:43 test
[root@localhost yuechaotian]# ll test
總用量 12
-rwxr-xr-x? 1 root root 11742 12月? 9 21:43 conf.rd
3. 使用參數 -R,改變目錄 test 及其文件用戶和群組
[root@localhost yuechaotian]# chown root:root test
[root@localhost yuechaotian]# ll
總用量 8
drwxr-xr-x? 3 root root 4096 12月? 7 14:52 study
drwxr-xr-x? 2 root root 4096 12月? 9 21:43 test
[root@localhost yuechaotian]# chown -R yuechaotian:dba test
[root@localhost yuechaotian]# ll
總用量 8
drwxr-xr-x? 3 root??????? root 4096 12月? 7 14:52 study
drwxr-xr-x? 2 yuechaotian dba? 4096 12月? 9 21:43 test
[root@localhost yuechaotian]# ll test
總用量 12
-rwxr-xr-x? 1 yuechaotian dba 11742 12月? 9 21:43 conf.rd
在 chmod 中使用 -R 參數,能達到同樣的效果:該文件夾內的所有文件/文件夾都改為指定的權限.
總結
以上是生活随笔為你收集整理的linux 对象 调出r_【转】Linux - chown 中的 -R 参数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: fscanf不读取_思考了一天,终于把m
- 下一篇: linux如何运行qt源码,Linux/