tail -n 7 myfile1.txt
释义:显示myfile1.txt文件的最后7行 ,为方便理解,我事先在myfile1.txt文件中写入了20行,每行是数字1-20分别写入
root@localhost ~]# tail -n 7 myfile1.txt 14 15 16 17 18 19 20
tail -n 7 myfile1.txt
释义:显示myfile1.txt文件的最后7行 ,为方便理解,我事先在myfile1.txt文件中写入了20行,每行是数字1-20分别写入
root@localhost ~]# tail -n 7 myfile1.txt 14 15 16 17 18 19 20