NAME 總攬 POSIX 選項: GNU 選項 (最短方式): [-cfvR] [--reference=rfile] [--help] [--version] 描述
使用chmod命令改變指定文件訪問權限有兩種方式:一種是用符號 標記所進行更改,另一種方式是采用8進制數(shù)指定新的訪問權限,。
GNU 選項 -f, --silent, --quiet -v, --verbose -R, --recursive 改變目錄及其所有子目錄的文件的權限 ? ?tarena@ubuntu:~/uc/day07$ chmod -R a-x aaa tarena@ubuntu:~/uc/day07$ cd aaa bash: cd: aaa: 權限不夠 ? ?tarena@ubuntu:~/uc/day07$ chmod -R a-x aaa chmod: 無法讀取目錄"aaa": 權限不夠 tarena@ubuntu:~/uc/day07$ ls -l 總用量 16 d-w--w---- 2 tarena tarena 4096 4月 12 22:02 aaa -rw-rw-r-- 1 tarena tarena 26 4月 11 13:13 day07.txt -rw-rw-r-- 1 tarena tarena 8 4月 11 13:55 hello2.c -rw-rw-r-- 1 tarena tarena 8 4月 11 13:24 hello.c tarena@ubuntu:~/uc/day07$ ? ?tarena@ubuntu:~/uc/day07$ chmod -R a+x aaa chmod: 無法讀取目錄"aaa": 權限不夠 tarena@ubuntu:~/uc/day07$ cd aaa tarena@ubuntu:~/uc/day07/aaa$ ? ?tarena@ubuntu:~/uc/day07$ ls -l 總用量 16 d-wx-wx--x 2 tarena tarena 4096 4月 12 22:02 aaa -rw-rw-r-- 1 tarena tarena 26 4月 11 13:13 day07.txt -rw-rw-r-- 1 tarena tarena 8 4月 11 13:55 hello2.c -rw-rw-r-- 1 tarena tarena 8 4月 11 13:24 hello.c ? |
|