Category Archives: CommandLine

sacar URL de página web

curl -sAOpera “http://www.google.com/search?q=linux” | grep -Pio ‘(?< =href=['\''"])[^:]+://[^'\''"]+' curl -sAOpera "http://www.google.com/search?q=linux" | egrep -ie "< *HREF=(.*?)>” | cut -d “\”" -f 2 | grep :// Vía CommandLinefu {lang: ‘es’}

Posted in CommandLine, Linux, Sysadmin | Leave a comment