Skip to content

grepLink

# TAB をgrep
grep $'\t'

# ディレクトリ以下再帰
grep -r hoge dir

# 前3行
grep -A 3

# 後3行
grep -B 3

# 前後3行
grep -3