LoginSignup
1
0

More than 5 years have passed since last update.

tsvファイルの特定列の要素の種類と出現頻度を調べるコマンドメモ

Last updated at Posted at 2017-05-15

参考:http://qiita.com/b4b4r07/items/8c1911092002d0b457a6

cat home.tsv  | awk -F"\t" 'BEGIN{OFS="\t"}{print $8}' | sort | uniq -c | sort -nr

awk便利だナァ

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