本文主要是介绍Linux基础指令文件管理003,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
本章讲述如何查看文件以及修改权限。
操作系统:
CentOS Stream 9
操作步骤:
查看文件:
指令cat
[root@localhost a]# cat 1.txt
123
[root@localhost a]#
指令less
[root@localhost a]# less 1.txt
123
~
~
~
~
~
~
~
~
指令more
[root@localhost a]# more 1.txt
123
[root@localhost a]#
指令head
[root@localhost a]# head 1.txt
123
[root@localhost a]#
指令tail
[root@localhost a]# tail 1.txt
123
[root@localhost a]#
修改文件权限:
指令chmod
[root@localhost a]# chmod 777 1.txt
[root@localhost a]# ll
总用量 4
-rwxrwxrwx 1 root root 4 6月 8 14:47 1.txt
drwxr-xr-x 3 root root 41 6月 8 14:33 b
[root@localhost a]# chmod 755 1.txt
[root@localhost a]# ll
总用量 4
-rwxr-xr-x 1 root root 4 6月 8 14:47 1.txt
drwxr-xr-x 3 root root 41 6月 8 14:33 b
[root@localhost a]# chmod -x 1.txt
[root@localhost a]# ll
总用量 4
-rw-r--r-- 1 root root 4 6月 8 14:47 1.txt
drwxr-xr-x 3 root root 41 6月 8 14:33 b
[root@localhost a]#
修改所有权:
更改所有者
[root@localhost a]# chown wq 1.txt
更改所属组
[root@localhost a]# chgrp wq 1.txt
[root@localhost a]#
同时更改所有者和所属组
[root@localhost a]# chown wq:wq 1.txt
[root@localhost a]#
这篇关于Linux基础指令文件管理003的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!