LoginSignup
4
3

More than 5 years have passed since last update.

テキストファイルのヘッダー行(一番上の行)を取り除く

Posted at

要望

csvファイルなどのヘッダー行を取り除きたい

やり方

tail -n +2 test.csv

+をつけるとn行目から最後まで表示してくれるらしい。
-n +5だと5行目から最後まで表示

4
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3