Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sed 's/log/ /g;s/car/ /g;s/GO/ /g;s/ON/ /g' test.txt
sed 's/\(log\|car\|GO\|ON\)/ /g' test.txt
sed 's/log\|car\|GO\|ON/ /g' test.txt
[gray]# or abit more readable in GNU sed[/gray]
sed -r 's/log|car|GO|ON/ /g' test.txt