parsing FireFox bookmarks using regular expression
- by SIFE
I tried to parse firefox bookmark(JSON exported version), using this efforts:
cat boo.json | grep '\"uri\"\:\"^http\://[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}\"'
cat boo.json | grep '"uri"\:"^http\://[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}'
cat boo.json | grep '"uri"\:"^http\://[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}"'
And few others but all fails, json bookmarked file will look like this:
.........."uri":"http://www.google.com/?"......"uri":"http://stackoverflow.com/"
So, the output should be like this:
"uri":"http://www.google.com/?"
"uri":"http://stackoverflow.com/"
What is the missing part on my regular expression?