-B、-A、または -C オプションを使用
grep --help
...
-B, --before-context=NUM print NUM lines of leading context
-A, --after-context=NUM print NUM lines of trailing context
-C, --context=NUM print NUM lines of output context
-NUM same as --context=NUM
...
grep の -A 1
オプションを指定すると、1 行後に表示されます。 -B 1
1行前に表示されます;と -C 1
両方を組み合わせると、前後に 1 行になります -1