阅读量:0
在Linux中,你可以使用tail
命令来去掉文件的第一行
tail -n +2 input_file > output_file
这里,input_file
是你要处理的文件名,output_file
是去掉第一行后的新文件名。-n +2
参数告诉tail
从第二行开始输出。
例如,如果你有一个名为example.txt
的文件,你可以使用以下命令去掉第一行:
tail -n +2 example.txt > example_without_first_line.txt
这将创建一个名为example_without_first_line.txt
的新文件,其中不包含原始文件的第一行。