I have a file like:
http://example.mx
https://test.com
http://4.3.4.4
http://dev.somedomain.com
http://1.3.4.2
I want to get rid of the ones with IPs so that the result should be:
http://example.mx
https://test.com
http://dev.somedomain.com
What I did is:
cat in.log | sed '/^http:\/\/[0-9]/d' > out.log
But it does not work.