Google Search With Bash & Curl On Linux
Page 1 of 1
Google Search With Bash & Curl On Linux
Google Search With Bash & Curl On Linux
Last edited by jamied_uk on 22nd July 2016, 01:12; edited 3 times in total
Re: Google Search With Bash & Curl On Linux
- Code:
#/bin/bash
# Usage: ./find.sh "google.com"
myvar="$1"
search=$2
# https://encrypted.google.com/search?q=
# content=$(curl -L $myvar)
# echo $content > $myvar.html
# firefox $myvar.html
wget -O - "$myvar/#safe=off&q=/$2" > $myvar.html
firefox $myvar.html
- Code:
#/bin/bash
# Usage: ./find.sh "google.com"
myvar="$@"
# https://encrypted.google.com/search?q=
# content=$(curl -L $myvar)
# echo $content > $myvar.html
# firefox $myvar.html
wget -O - $myvar
lynx -dump $myvar
- Code:
#/bin/bash
# Usage: ./find.sh "google.com"
myvar="$@"
# https://encrypted.google.com/search?q=
content=$(wget $myvar -q -O -)
echo $content > $myvar.html
firefox $myvar.html
Similar topics
» get google search engine on linux mint
» Using Grep To Search files & Counting Frequency For Words With Grep On Linux
» Bash Psychic Game For Linux Bash
» Walkaround To Search Twitter From Linux Command Line
» Install google chrome on Linux Mint
» Using Grep To Search files & Counting Frequency For Words With Grep On Linux
» Bash Psychic Game For Linux Bash
» Walkaround To Search Twitter From Linux Command Line
» Install google chrome on Linux Mint
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum