cat 1.html | grep \"\" > title.txt
This grep statement is not working.
Please tell the best way to grab the title of a pa
cat 1.html | grep -oE ".*" | sed 's///' | sed 's/<\/title>//'
Grep with -oE extract only the title tag, then sed remove the html tags