Pinned Loading
-
-
Fusion de csv avec 1 seul header
Fusion de csv avec 1 seul header 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
5awk 'FNR==1 && NR>1 {next;}{print}' *.csv > file
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.