LINUX02_概述、文件系统详解、vim、cd、ls、mkdir、touch、rm、cp、less、tail、head、find、locate、打包或解压tar(七)

简介: LINUX02_概述、文件系统详解、vim、cd、ls、mkdir、touch、rm、cp、less、tail、head、find、locate、打包或解压tar(七)

⑩. cat、more、less、tail、head


  • ①. cat(查看轻量级的文本文件)


  1. cat 文件名


  1. cat 文件1 文件2 连接显示多个文件


  1. cat 文件1 文件2 > 文件3 合并为新文件


微信图片_20220108192729.png


②. more(查看较长的文件)


Enter:代表向下翻一行


空白键 (space):代表向下翻一页


q:代表立刻离开 more ,不再显示该文件内容。


Ctrl+F 向下滚动一屏


Ctrl+B 返回上一屏


③. less(同more类似,比more功能更多)


pagedown:向下翻动一页


pageup:向上翻动一页


q可以退出查看


④. tail


从尾部开始查看,比较适合查看日志


-f 跟随查看(输出完信息不退出,尾部有一个光标在)


-n200 显示的行数,n可以省略(输出完信息后自动退出)


⑤. head -10:查看文件的前10行,Ctrl+C结束


⑩①. find、locate


  • ①. find(查询速度慢)


  1. find+搜索路径+参数+搜索关键字


  1. 按文件名:find /home/esop -name “*.txt” 根据名称查找/目录下的filename.txt文件


  1. find / -name “*.conf”


微信图片_20220108192816.png


  • ②. locate(查找文件,查询速度更快,使用更方,在内存查)


  1. locate /opt/*.conf


  1. locate /*.conf


  1. 运行前需要执行updatedb来更新文件索引


微信图片_20220108192840.png


报错如下
# updatedb
-bash: updatedb: command not found
yum install mlocate


相关文章
|
27天前
|
存储 运维 搜索推荐
|
29天前
|
Java Unix Linux
Linux vi/vim
Linux vi/vim
19 5
|
1月前
|
Linux
Linux的cp命令如何使用?
Linux的cp命令如何使用?
51 5
|
29天前
|
机器学习/深度学习 Linux 编译器
Linux入门3——vim的简单使用
Linux入门3——vim的简单使用
54 1
|
17天前
|
Unix Linux 开发工具
Linux Vim的 命令大全
Linux Vim的 命令大全
16 0
|
2月前
|
Linux
深入理解Linux中的cp命令:文件与目录的复制利器
深入理解Linux中的cp命令:文件与目录的复制利器
|
3月前
|
安全 Linux 数据库
在Linux中,find命令和locate命令有什么区别?
在Linux中,find命令和locate命令有什么区别?
|
11月前
|
Linux 数据库
Linux命令(28)之locate
Linux命令(28)之locate
63 2
|
6月前
|
Linux Shell 数据库
linux(十九)查找文件的四个命令whereis、which、find、locate~
linux(十九)查找文件的四个命令whereis、which、find、locate~
99 0