📜  捕获 grep cat 文件 linux 的最后第一行 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:52.198000             🧑  作者: Mango

代码示例1
catch grep cat last first lines of a file
tail --lines=100 file.dat
#wll grep last 100 lines
head --lines=100 file.dat 
#will grep cat first 100 lines