The behead
command simply removes the header row from target CSV file.
This is mostly useful to conform with other tools that don't expect header rows or to easily pipe the result into other unix commands expecting simple lines of data.
This means this file:
people.csv
Name | Surname |
---|---|
John | Black |
Lucy | Red |
Guillaume | Orange |
Will become:
John | Black |
Lucy | Red |
Guillaume | Orange |
If you run:
xan behead people.csv