tail、 more、head、 cat、 echo 查看文件内容
程序员文章站
2022-05-12 14:25:28
...
# 显示日志200行
tail -200f cnpl-1_20110719.log
# 跟踪日志执行
tail -f ~/cnpl_bin/Admin_20110520.log
# tailf 其实就是 tail -f 10
tailf a.txt
# more a.txt
1. 回车自动下一行
2. 空格自动翻页
3. 按b自动回到上页
# cat 可以直接 显示多个文件
cat a.txt b.txt
# 内容追加到文件中
echo "abcfdsfdsfdsdddd" > b.txt
# -n 显示行号
cat -n a.txt b.txt
1abcdddd
2abcfdsfdsfdsdddd
# tail 显示文件后几行,head显示文件前几行
tail -6 a.txt
head -6 a.txt
# 直接tail 和head 都是显示对应文件的后十行和前十行
tail a.txt
head a.txt
#前10项
ll -t | grep 'root' | head -10
#后10项
ll -t | grep 'root' | tail -10
推荐阅读
-
Linux中使用命令more,less,cat查看文件内容
-
linux中查几个看文件的命令:cat、more、less、tail、head的分别介绍
-
linux文件处理命令 touch cat tac more less head tail
-
Linux编程 5 (目录重命名与移动mv,删除文件rm,目录创建mkdir删除rmdir,查看file,cat,more,tail,head)
-
tail、 more、head、 cat、 echo 查看文件内容
-
linux中查几个看文件的命令:cat、more、less、tail、head的分别介绍
-
linux文件处理命令 touch cat tac more less head tail