Actions

 Language:
 RSS flow:


Remove first line of a file


Introduction

Using sed, it's possible to remove the first line of a file

Example:

  • sed '1d' file.txt
  • sed '1d' file.txt > file2.txt

 

Go back