パターンを無視するgrep
以下のようにcURLを使用してWebサイトからURLを抽出しています。 curl www.somesite.com | grep "<a href=.*title=" > new.txt 私のnew.txtファイルは以下の通りです。 <a href="http://website1.com" title="something"> <a href="http://website1.com" information="something" title="something"> <a href="http://website2.com" title="some_other_thing"> <a href="http://website2.com" information="something" title="something"> <a href="http://websitenotneeded.com" title="something NOTNEEDED"> ただし、以下の情報のみを抽出する必要があります。 <a href="http://website1.com" title="something"> <a href="http://website2.com" information="something" title="something"> 私はそれらに情報があり、タイトルがNOTNEEDEDで終わるものを無視しようとして<a hrefいます。 grepステートメントを変更するにはどうすればよいですか?