Comment on Useful Unix commands for data scienceComments−nfg13yWorth noting that: grep -A n -B n is more easily written: grep -C n If you think "C" for "context" this is easier to remember too.
Comments
Worth noting that:
is more easily written: If you think "C" for "context" this is easier to remember too.