Linux文件截取前几行、中间几行、后几行的命令
2022-09-25 本文已影响0人
大海龟啦啦啦
前50行,用head
head -n 50 test.txt
后50行,用tail
tail -n 50 test.txt
中间50行,用sed
sed -n '50,100p' test.txt
前50行,用head
head -n 50 test.txt
后50行,用tail
tail -n 50 test.txt
中间50行,用sed
sed -n '50,100p' test.txt