How can I filter out some words from a line of text using command line tools?
Example:
line 1: All's Well That Ends Well
filter: That Well
output: Well That Well
Notice: a double occurrence still appears twice after the filtering.
Apart from a line of GNU utilities, I could also employ a Python script.