2
0

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.

LTSVファイルのラベル一覧を取得する

Posted at

LTSVで出力されたログファイルを BigQueryに食わせるのに
スキーマを決める必要があり
あれ、このLTSVってどんなラベルが存在するんだっけ? というので調べたときのコマンド。

各行かならず同じ項目が出力されるなら1行みて調べればいいんだけど
状況によって項目が一部あったりなかったりするようなログだったので
ファイル全体をなめて調べたかった。

cat ltsv.log | sed "s/\t/\n/g" | cut -d":" -f1 | sort | uniq
2
0
0

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
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?