06-22-2008, 04:21 PM
After getting a great idea off of newbie Nilef i decided to create this batch file. At the moment there is no support for google, because it wont work the same way as the others, suggestions welcome on how to bypass this porblem.
Basicly is opens an internet connection to a search engine u select and a parameter.
I will be adding it to Useful Tools:
http://www.hackforums.net/showthread.php?tid=20892
Basicly is opens an internet connection to a search engine u select and a parameter.
I will be adding it to Useful Tools:
http://www.hackforums.net/showthread.php?tid=20892
Code:
@ echo off
:start
color 0A
cls
echo ################################################## %time% %date%
echo:
echo Web Search
echo by TeRRorPC
echo:
echo #########################################################################
echo:
echo:
echo:
echo Please enter parameters below, Use the + symbol instead of spaces:
echo =====================================
set /p search=
echo:
echo Please select an search engine below:
echo =====================================
echo 1. Yahoo
echo 2. Live
echo 3. Ask
echo 4. Dogpile
echo:
echo 5. eBay
echo 6. eBay UK
echo:
echo:
echo ! Type the number and press enter !
echo:
set /p engine=
if %engine%==1 goto yahoo
if %engine%==2 goto live
if %engine%==3 goto ask
if %engine%==4 goto dogpile
if %engine%==5 goto ebay
if %engine%==6 goto ebayuk
:yahoo
start http://search.yahoo.com/search?p=%search%
goto start
:live
start http://search.live.com/results.aspx?q=%search%
goto start
:ask
start http://www.ask.com/web?q=%search%
goto start
:dogpile
start http://www.dogpile.com/dogpile/ws/results/Web/%search%/1/417/TopNavigation/Relevance/iq=true/zoom=off/_iceUrlFlag=7?_IceUrl=true
goto start
:ebay
start http://search.ebay.com/search/search.dll?satitle=%search%
goto start
:ebayuk
start http://shop.ebay.co.uk/?_nkw=%search%
goto start