#TerminalTip: how to use #grep to highlight a line of interest to you without removing any other lines:
Let's say you're using a command that lists something, and you want to highlight any line that contains the word "apple", without highlighting anything else, or removing any lines from the output. Here's how you can do that:
some_command |grep --color -ie ^ -e "^.*apple.*$"
🍵 
