Appearance
tail 命令可以将文件指定位置到文件结束的内容写到标准输出。
tail -n 5 1.txt > 2.txt
head -n 5 1.txt > 2.txt
tail -n +5 1.txt > 2.txt