一個grep使用正則表達式的例子

cat bookmarks_2017_8_9.html | grep -o '\http[^\"]*\>"'

\http[^\"]*\>" 分爲三部分:
    \http   :以http爲開頭
    [^\"]*  :排除掉字符串中的"
    \>"     :以"結尾

-o 只顯示匹配的字符串html

bookmarks_2017_8_9.html的內容

> <DT><A HREF="https://gobyexample.com/" ADD_DATE="1485143885"
> ICON="data:image/png;base64,C">Go by Example</A>

    
輸出:

>  https://gobyexample.com/
相關文章
相關標籤/搜索