118
ファイルの中の特定文字列をパターン指定して表示
ログの中から特定日が含まれているかどうかなど特定の文字列を指定して確認する際にはmoreにパターン指定のオプションを使って表示させる。
8月1日が含まれているかどうか
# more +/"01/Aug" example.com-access
表示結果は該当する行の2行前から表示されるみたい。
# more --help
more: unknown option "-h"
usage: more [-dflpcsu] [+linenum | +/pattern] name1 name2 ...








