linux删除大文件的前n行

【linux删除大文件的前n行】tail -n +3 old_file > new_file
mv new_file old_file
这样就删除了前2行,速度要比sed命令快

    推荐阅读