CentOS 7中常用的基础命令( 三 )


touch [选项] 文件名2.常用选项touch命令的常用选项及其说明见表3-10 。
表3-10 touch命令的常用选项及其说明

CentOS 7中常用的基础命令

文章插图
 
3.实例
(1)创建一个新的空白文件并查看其创建时间,命令如下 。
[root@test ~]# dateFri May5 00:43:37 CST 2000[root@test ~]# touch newfile[root@test ~]# ls -ltotal 0-rw-r--r--1 root root0 May5 00:43 newfile(2)修改文件的访问时间为系统当前时间,命令如下 。
[root@test ~]# ls -lutotal 0-rw-r--r-- 1 root root 0 May5 17:14 file.txt[root@test ~]# dateSat May5 17:17:28 CST 2018[root@test ~]# touch -a file.txt [root@test ~]# ls -lutotal 0-rw-r--r-- 1 root root 0 May5 17:17 file.txt(3)修改文件的修改时间为系统当前时间,命令如下 。
[root@test ~]# ls -ltotal 0-rw-r--r-- 1 root root 0 May5 17:14 file.txt[root@test ~]# dateSat May5 17:21:23 CST 2018[root@test ~]# touch -m file.txt [root@test ~]# ls -ltotal 0-rw-r--r-- 1 root root 0 May5 17:21 file.txt(4)修改文件的访问时间为参考文件的时间,命令如下 。
[root@test ~]# ls -lu /usr/local/access-rw-r--r-- 1 root root 0 May5 17:23 /usr/local/access[root@test ~]# ls -lu file.txt -rw-r--r-- 1 root root 0 May5 17:17 file.txt[root@test ~]# touch -a -r /usr/local/access file.txt[root@test ~]# ls -lu file.txt -rw-r--r-- 1 root root 0 May5 17:23 file.txt3.2.2 cat命令1.功能说明cat命令用于查看文件内容,还可以合并文件,如果合并后的文件不存在,则自动创建 。cat命令的语法格式如下 。
cat [选项] 文件名cat 文件a 文件b >文件c2.常用选项cat命令的常用选项及其说明见表3-11 。
CentOS 7中常用的基础命令

文章插图
 
3.实例
(1)查看文件test.txt的内容并对所有输出行数编号,命令如下 。
[root@test ~]# cat -n test.txt1 #version=DEVEL2 # System authorization information345 auth --enableshadow --passalgo=sha51267 # Use CDROM installation media(2)将test.txt文件内容加上行号后输入文件test1.txt中,命令如下 。
[root@test ~]# cat -n test.txt > test1.txt[root@test ~]# cat -n test1.txt11 #version=DEVEL22 # System authorization information334455 auth --enableshadow --passalgo=sha5126677 # Use CDROM installation media(3)将test.txt文件和test1.txt文件合并到file文件中,命令如下 。
[root@test ~]# cat test.txt test1.txt >file[root@test ~]# cat file #version=DEVEL# System authorization informationauth --enableshadow --passalgo=sha512# Use CDROM installation media1 #version=DEVEL2 # System authorization information345 auth --enableshadow --passalgo=sha51267 # Use CDROM installation media3.2.3 mkdir命令1.功能说明mkdir命令用于创建一个新目录,其语法格式如下 。
mkdir [选项] 目录名2.常用选项mkdir命令的常用选项及其说明见表3-12 。
CentOS 7中常用的基础命令

文章插图
 
3.实例
【CentOS 7中常用的基础命令】(1)在/test目录下创建新目录file,同时设置文件属主有读、写和执行权限,属组有读、写权限,其他人只有读权限,命令如下 。
[root@test ~]# mkdir -m 764 /test/file[root@test ~]# ls -ld /test/filedrwxrw-r-- 2 root root 6 May5 10:02 /test/file(2)在/test目录下创建testfile目录,并在testfile目录下创建filetest目录,命令如下 。
[root@test ~]# mkdir -p /test/testfile/filetest[root@test ~]# tree /test//test/├── file└── testfile└── filetest3 directories, 0 files3.2.4 rm命令1.功能说明rm命令用于删除文件或目录 。使用rm命令时要注意,一旦文件或目录被删除,就无法再恢复 。rm命令的语法格式如下 。
rm [选项] [文件或目录]2.常用选项rm命令的常用选项及其说明见表3-13 。
CentOS 7中常用的基础命令

文章插图
 
3.实例
(1)删除文件test.txt和文件test1.txt,并在删除前进行确认,命令如下 。
[root@test ~]# rm -i test.txt test1.txt rm: remove regular file 'test.txt'? yrm: remove regular file 'test1.txt'? y输入y确认删除 。
(2)删除/test目录下的所有目录,在删除前不进行确认,命令如下 。
[root@test ~]# rm -rf /test/[root@test ~]# ls /testls: cannot access /test: No such file or directory3.2.5 cp命令1.功能说明cp命令用于复制,它可以将单个文件复制成一个指定文件名的文件或将其复制到一个存在的目录下,还可以同时复制多个文件或目录 。cp命令的语法格式如下 。


推荐阅读