and条件やor条件などでgrepする方法。
or条件
eオプションを使う
$ grep -e "hoge1" -e "hoge2" fugafuga.txt
パイプを使う
$ grep "hoge1\|hoge2" fugafuga.txt
パイプの前にバックスラッシュを入れる点に注意。
and条件
パイプリレーする
$ grep "hoge1" fugafuga.txt | grep "hoge2"
技術的な情報を発信しています。間違いや不適切な記述にお気付きの際はご指摘をお願いします。気まぐれに英語で記事を書いたりもします。
and条件やor条件などでgrepする方法。
$ grep -e "hoge1" -e "hoge2" fugafuga.txt
$ grep "hoge1\|hoge2" fugafuga.txt
パイプの前にバックスラッシュを入れる点に注意。
$ grep "hoge1" fugafuga.txt | grep "hoge2"