Skip to content

Instantly share code, notes, and snippets.

@akiniwa
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akiniwa/478201e6e0da62a8c5ce to your computer and use it in GitHub Desktop.
Save akiniwa/478201e6e0da62a8c5ce to your computer and use it in GitHub Desktop.
Awk addictのためのperlワンライナー

Awk addictのためのperlワンライナー

perl起動オプション

オプション 意味
-e ワンライナー
-w 警告
-n 暗黙のループ
-p 自動print
-l 行末処理
-a 入力レコードを配列@Fへ分割
-F INPUTセパレータを指定

特殊変数

perl awk 意味
$_ $0 最後に読み込んだレコード
$. NR レコード番号
$/ RS INPUTレコードセパレータ
$|ORS OUTPUTレコードセパレータ
$ARGV FILENAME ファイル名
ARGV
@ARGV
$, OFS OUTPUTフィールドセパレータ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment