欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux操作文件小技巧

程序员文章站 2022-06-02 18:41:33
...

linux操作文件小技巧

1、head和tail

head test.txt                       ##默认显示test.txt文件前十行
head -n 3 test.txt 			        ##显示test.txt文件的前3行
head -n -3 test.txt 			    ##显示除了文件最后3行外的所有内容
##################################################################
tail test.txt						##默认显示test.txt最后十行内容
tail -n 3 test.txt                  ##显示test.txt最后三行的内容
tail -n +3 test.txt                 ##从第三行开始输出test.txt的所有内容

2、查看文本中20至30行内容

方法1:
# sed -n '20,30p' test.txt 
方法2:
# head -30 test.txt |tail

3、搜索关键词在目录下的哪个文件中

grep -r "keyword" *

4、 执行history命令时,显示命令执行的时刻

# export HISTTIMEFORMAT="%F %T "
# history