万字肝货 | 超全总结,Linux常用磁盘命令、文件命令!(四)

简介: 万字肝货 | 超全总结,Linux常用磁盘命令、文件命令!(四)

9、文件命令

1)mkdir:创建目录

-p:递归创建目录

操作如下:


[root@image_boundary Desktop]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 20:02 aa
drwxr-xr-x. 2 root root 4096 Oct 15 20:05 bb
[root@image_boundary Desktop]# mkdir cc
[root@image_boundary Desktop]# ll
total 12
drwxr-xr-x. 2 root root 4096 Oct 15 20:02 aa
drwxr-xr-x. 2 root root 4096 Oct 15 20:05 bb
drwxr-xr-x. 2 root root 4096 Oct 15 20:21 cc
# 不写-p会报错。
[root@image_boundary Desktop]# mkdir dd/ee     
mkdir: cannot create directory `dd/ee': No such file or directory
# 参数-p表示递归产生一个目录。
# 创建一个递归目录dd/ee。
[root@image_boundary Desktop]# mkdir -p dd/ee
[root@image_boundary Desktop]# cd dd
[root@image_boundary dd]# ll
total 4
drwxr-xr-x. 2 root root 4096 Oct 15 20:22 ee


2)touch:创建文件

[root@image_boundary Desktop]# ll
total 16
drwxr-xr-x. 2 root root 4096 Oct 15 20:02 aa
drwxr-xr-x. 2 root root 4096 Oct 15 20:05 bb
drwxr-xr-x. 2 root root 4096 Oct 15 20:21 cc
drwxr-xr-x. 3 root root 4096 Oct 15 20:22 dd
[root@image_boundary Desktop]# cd cc
[root@image_boundary cc]# ll
total 0
[root@image_boundary cc]# touch sum.txt
[root@image_boundary cc]# ll
total 4
-rw-r--r--. 1 root root 0 Oct 15 20:28 sum.txt


3)file:查看文件类型

-b:不显示文件名,只显示文件类型。

操作如下:


"file 文件名:可以显示其到底是一个文件,还是一个目录"
[root@image_boundary ~]$ file aa
aa: directory
[root@image_boundary cc]# ll
total 0
-rw-r--r--. 1 root root 0 Oct 15 20:28 sum.txt
"查看当前文件夹的类型(这里指的就是cc):文件夹"
[root@image_boundary cc]# file .      
.: directory    
"如果sum.txt中没有内容,显示empty"
[root@image_boundary cc]# file sum.txt   
./sum.txt: empty
"如果sum.txt中有内容,显示sum.txt的文件类型"
[root@image_boundary cc]# file sum.txt  
./sum.txt: ASCII text
[root@image_boundary cc]# file -b sum.txt
ASCII text



4)rmdir:删除空目录

-p:递归删除空目录

操作如下:


"注意以下两个命令的区别"
rmdir dd/ee/ff      表示删除dd下面ee下面的这一个空目录ff。
rmdir -p dd/ee/ff   表示同时递归删除dd/ee/ff这3个目录。


5)rm:删除文件或目录

rm 文件名

-i:询问。(这个是默认情况,不写就是表示要询问)

-r:递归删除。

-f:强制删除(不提示删除)。

“下面这条命令:慎用!!!除非真的知道你在干嘛。”

rm -rf 目录/文件

操作如下:


[root@image_boundary bb]# ll
total 12
-rw-r--r--. 1 root root 149 Oct 15 20:00 a.txt
-rw-r--r--. 1 root root  95 Oct 15 20:02 b.txt
-rw-r--r--. 1 root root 138 Oct 15 20:02 c.txt
[root@image_boundary bb]# rm a.txt
rm: remove regular file `a.txt'? n
[root@image_boundary bb]# ll
total 12
-rw-r--r--. 1 root root 149 Oct 15 20:00 a.txt
-rw-r--r--. 1 root root  95 Oct 15 20:02 b.txt
-rw-r--r--. 1 root root 138 Oct 15 20:02 c.txt
[root@image_boundary bb]# rm a.txt 
rm: remove regular file `a.txt'? y
[root@image_boundary bb]# ll
total 8
-rw-r--r--. 1 root root  95 Oct 15 20:02 b.txt
-rw-r--r--. 1 root root 138 Oct 15 20:02 c.txt
"rm -rf bb会删除bb目录下所有的目录和文件,问都不问,毫不留情。一定不要轻易使用该命令"
[root@image_boundary Desktop]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 20:53 bb
drwxr-xr-x. 2 root root 4096 Oct 15 20:30 cc
[root@image_boundary Desktop]# rm -rf bb
[root@image_boundary Desktop]# ll
total 4
drwxr-xr-x. 2 root root 4096 Oct 15 20:30 cc



6)cp:复制文件或目录

注意:某个文件或目录被复制后,原始文件或目录依然存在。

cp 源文件(目录) 目标文件(目录)

-i:提示。

-r/-R参数:当【复制目录】的时候,必须用到这个参数。

-r/-R:递归复制目录。

-f参数:在搭建集群时,修改时区的时候用到

-f:覆盖已存在的目标文件,而不给出提示。

① 同一文件,复制到同一目录下,需要改名;否则,会报错。

[root@image_boundary Desktop]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 21:00 aa
drwxr-xr-x. 3 root root 4096 Oct 15 21:00 bb
[root@image_boundary Desktop]# cd aa
[root@image_boundary aa]# ll
total 4
-rw-r--r--. 1 root root 21 Oct 15 21:00 sum.txt
-rw-r--r--. 1 root root  0 Oct 15 20:59 sum.txt~
"把当前目录下的sum.txt文件,复制到当前目录下。"
"假如不修改文件名,会报错。"
[root@image_boundary aa]# cp sum.txt sum.txt  
cp: `sum.txt' and `sum.txt' are the same file
"修改文件名后,才不会报错。"
[root@image_boundary aa]# cp sum.txt sum1.txt
[root@image_boundary aa]# ll
total 8
-rw-r--r--. 1 root root 21 Oct 15 21:04 sum1.txt
-rw-r--r--. 1 root root 21 Oct 15 21:00 sum.txt
-rw-r--r--. 1 root root  0 Oct 15 20:59 sum.txt~


② 同一文件,复制到不同目录下,不需要改名;

[root@image_boundary Desktop]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 21:04 aa
drwxr-xr-x. 3 root root 4096 Oct 15 21:00 bb
"将aa目录下的sum.txt文件,复制到bb目录下,不需要修改名称。"
[root@image_boundary Desktop]# cp aa/sum.txt bb/
[root@image_boundary Desktop]# cd bb
[root@image_boundary bb]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 21:01 bbb
-rw-r--r--. 1 root root   21 Oct 15 21:07 sum.txt


③ 递归复制bb目录中的东西(既包括文件,也包括目录),到aa目录中去。

"由于复制目录,因此必须使用参数【-r/-R】"
[root@image_boundary Desktop]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 21:52 aa
drwxr-xr-x. 3 root root 4096 Oct 15 21:07 bb
"将bb目录复制到aa目录下。"
"注意:复制目录的时候,必须要使用参数-r或者-R"
[root@image_boundary Desktop]# cp -r bb aa/
[root@image_boundary Desktop]# cd aa
[root@image_boundary aa]# ll
total 4
drwxr-xr-x. 3 root root 4096 Oct 15 21:53 bb
-rw-r--r--. 1 root root    0 Oct 15 20:59 sum.txt~


7)mv:移动某个文件或目录

-i:提示。

-f:强制移动。

-u:新覆盖旧,不存在时移动。

① 将同一个文件,移动到同级目录下,必须修改文件名,效果相当于重命名。

[root@image_boundary Desktop]# ll
total 8
drwxr-xr-x. 2 root root 4096 Oct 15 21:55 aa
drwxr-xr-x. 2 root root 4096 Oct 15 21:54 bb
[root@image_boundary Desktop]# mv bb/sum.txt bb/sum1.txt


相关文章
|
4天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
19 3
|
4天前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
16 2
|
6天前
|
Linux 开发工具 Perl
在Linux中,有一个文件,如何删除包含“www“字样的字符?
在Linux中,如果你想删除一个文件中包含特定字样(如“www”)的所有字符或行,你可以使用多种文本处理工具来实现。以下是一些常见的方法:
31 5
|
4天前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
19 3
|
7天前
|
安全 Linux 数据安全/隐私保护
在 Linux 系统中,查找文件所有者是系统管理和安全审计的重要技能。
在 Linux 系统中,查找文件所有者是系统管理和安全审计的重要技能。本文介绍了使用 `ls -l` 和 `stat` 命令查找文件所有者的基本方法,以及通过文件路径、通配符和结合其他命令的高级技巧。还提供了实际案例分析和注意事项,帮助读者更好地掌握这一操作。
23 6
|
7天前
|
Linux
在 Linux 系统中,`find` 命令是一个强大的文件查找工具
在 Linux 系统中,`find` 命令是一个强大的文件查找工具。本文详细介绍了 `find` 命令的基本语法、常用选项和具体应用示例,帮助用户快速掌握如何根据文件名、类型、大小、修改时间等条件查找文件,并展示了如何结合逻辑运算符、正则表达式和排除特定目录等高级用法。
32 6
|
8天前
|
监控 Linux 开发者
如何在 Linux 中优雅的使用 head 命令,用来看日志简直溜的不行
`head` 命令是 Linux 系统中一个非常实用的工具,用于快速查看文件的开头部分内容。本文介绍了 `head` 命令的基本用法、高级用法、实际应用案例及注意事项,帮助用户高效处理文件和日志,提升工作效率。
21 7
|
7天前
|
缓存 网络协议 Linux
Linux ip命令常用操作
Linux的 `ip`命令是一个强大且灵活的网络管理工具,能够执行从基本的网络接口配置到高级的路由和VLAN管理等多种操作。通过熟练掌握这些常用操作,用户可以更加高效地管理和配置Linux系统的网络环境。无论是在日常管理还是故障排除中,`ip`命令都是必不可少的工具。
11 2
|
6月前
|
Linux
百度搜索:蓝易云【Linux中如何对文件进行压缩和解压缩?】
这些是在Linux中进行文件压缩和解压缩的常见方法。根据您的需求和具体情况,可能会使用其他压缩工具和选项。您可以通过查阅相应命令的帮助文档来获取更多详细信息。
87 1
|
6月前
|
NoSQL Java Linux
Linux常用命令(文件目录操作、拷贝移动、打包压缩、文本编辑、查找)
Linux常用命令(文件目录操作、拷贝移动、打包压缩、文本编辑、查找)