19
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

awkを使ってCSVのカラム数をチェック

Posted at

awkを使ってcsvのカラム数チェック

CSVの形をパパッとシェルスクリプトから確認したいときに、行数はwc -lで簡単にできるけど、列数はどうするんだろうと思って調べたので、そのメモです。

シェルコマンドで列数をチェックする方法

例えば下のようなcsvファイルの列数をチェックしたいとします。

1,apple,120
2,orange,230
3,kiwi
4,banana,200
5,melon,1000

各行のカラム数のチェックはawkで下のようにします。

$ cat sample.csv | awk -F ',' '{print NF}'
3
3
2
3
3

-F ','は区切り文字を指定するためのオプションで--field-separatorでも指定できるようです。

19
18
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
19
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?