How do I read the first line of a file using cat?

前端 未结 11 885
渐次进展
渐次进展 2021-01-29 22:20

How do I read the first line of a file using cat?

11条回答
  •  难免孤独
    2021-01-29 22:46

    Use the below command to get the first row from a CSV file or any file formats.

    head -1 FileName.csv
    

提交回复
热议问题