Search Engine Batch File
You can use this super interesting .bat file to search items based on a keyword!!!
Make a Batch File to Start
To make a batch file, open up Notepad on your PC.
Then, save as "anyname.bat". You have to keep .bat, it will change the format to Batch.
Codeing It
To code it, type the following...
@echo off
echo Welcome to my Search Engine!
echo Type 1 Keyword to Search. Use +s instead of spaces
set/p "keyw=Keyword is "
start https://www.google.com/search?q=%keyw%&sourceid=ie7&rls=com.microsoft:en-US:IE-Address&ie=&oe=
Then save. Do not go to that link while copying this to the clipboard either.
There! Your search engine is complete!