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

AWKスクリプト・インタプリタ

Posted at

awk(オーク)コマンドとは

  • パターン走査およびパターン処理の言語。
  • awk 'パターン {アクション}' ファイル名などと指定します。
  • 以下、例文をメモ置き。後にも追記予定。

すべての行の1列目を表示

awk '{ print $1 }'

if文。3列目がid_XXXX:YYYYYなら、表示

awk '{ if ($3 == "XXXX_id:YYYY" ) print `3列目がid_XXXX:YYYYなら、表示`;}'

参考

AWK リファレンス
【 awk 】コマンド(基本編)――テキストの加工とパターン処理を行う
awkコマンド
Awk 基礎文法最速マスター
AWK
AWKのこういう時はどう書く?
あとこれもメモ: データファイル処理に便利なUNIXコマンド

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