Skip to main content
deleted 19 characters in body
Source Link
manatwork
  • 32k
  • 8
  • 104
  • 93

grep -A 2 -B -2 "The mail system" mbox_file

grep -A 2 -B -2 "The mail system" mbox_file

-B-B is for priviousprevious lines  , so no need to give -negative value.

grep -A 2 -B 2 "The mail system" mbox_file <<<This will work please check

Regards Mukesh Payghan

grep -A 2 -B 2 "The mail system" mbox_file   # This will work please check

grep -A 2 -B -2 "The mail system" mbox_file

-B is for privious lines  , so no need to give -negative value.

grep -A 2 -B 2 "The mail system" mbox_file <<<This will work please check

Regards Mukesh Payghan

grep -A 2 -B -2 "The mail system" mbox_file

-B is for previous lines, so no need to give -negative value.

grep -A 2 -B 2 "The mail system" mbox_file   # This will work please check
Source Link

grep -A 2 -B -2 "The mail system" mbox_file

-B is for privious lines , so no need to give -negative value.

grep -A 2 -B 2 "The mail system" mbox_file <<<This will work please check

Regards Mukesh Payghan