Guest User

Untitled

a guest
Nov 14th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. # FNR = Current record number in the current file (line number)
  2. # NR = Overall record number
  3. # If we are on the first line (FNR==1) and the overall line number is not 1 (NR>1) we skip the line.
  4. # Else we print it
  5. awk 'FNR==1 && NR>1 {next;}{print}' *.csv > file
Add Comment
Please, Sign In to add comment