grep [-cilnv] [パターン] [ファイル名] ...
grep 'test' file1
grep '\.html$' file1
c | パターンを含む行の数だけを表示 |
i | 大文字小文字を区別せずに検索 |
l | パターンを含むファイル名だけを表示 |
n | 行番号を付けて表示 |
v | パターンを含まない行を表示 |
sed [-n] [-e スクリプト] [-f ファイル名] [ファイル名] ...
sed -e '10q' file1
sed -e '/^$/d' file1
sed -e 's/test/TEST/g' file1
sed -e 's/.*\.\(.*\)$/\1/g' file1
f | スクリプトを指定したファイルから読み込む |
f オプションがなく e オプションが 1 つのときは e オプションを省略可能。