Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Anyone thinks of search web using DOS way?  (Read 5965 times)

0 Members and 1 Guest are viewing this topic.

goldrain

  • Guest
Anyone thinks of search web using DOS way?
« on: June 01, 2007, 09:47:42 AM »
This is an idea, search web using command.
Everyone know the way to search is type keywords.
But I thinks keywords is not enough.
Anyone thinks of add a command?
like this: web keywords, music keywords, img keywords...
Use command to tell the type you want, and save many mouse clicks.
I think this way is cool and high efficiency.
Like DOS way, try it at http://www.cmd4web.com/

patio

  • Moderator


  • Genius
  • Maud' Dib
  • Thanked: 1769
    • Yes
  • Experience: Beginner
  • OS: Windows 7
Re: Anyone thinks of search web using DOS way?
« Reply #1 on: June 01, 2007, 04:25:11 PM »
Didn't look more efficient to me...clicked "Here" opened a daughter window...typed in my search word and hit Enter and waited...opened a regular Google results page.

My math is fuzzy but i counted 2 extra steps...
" Anyone who goes to a psychiatrist should have his head examined. "

goldrain

  • Guest
Re: Anyone thinks of search web using DOS way?
« Reply #2 on: June 02, 2007, 12:08:13 AM »
Didn't look more efficient to me...clicked "Here" opened a daughter window...typed in my search word and hit Enter and waited...opened a regular Google results page.

My math is fuzzy but i counted 2 extra steps...

OK, I think you are using firefox. IE and Opera need't daughter window.
it's just the beginning. Then you just keep the little window and type commands and switch result page  in it.

contrex

  • Guest
Re: Anyone thinks of search web using DOS way?
« Reply #3 on: June 02, 2007, 04:20:22 AM »
If you have Firefox you can just type search terms in the address bar anyway.

Carbon Dudeoxide

  • Global Moderator

  • Mastermind
  • Thanked: 169
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Experience: Guru
  • OS: Mac OS
Re: Anyone thinks of search web using DOS way?
« Reply #4 on: June 02, 2007, 04:40:51 AM »
In search bar:
City /low shot /far /wallpaper

Kinda weird........ We can just used the advanced options for web search.

contrex

  • Guest
Re: Anyone thinks of search web using DOS way?
« Reply #5 on: June 02, 2007, 04:45:03 AM »
Really strange English on that site.

goldrain

  • Guest
Re: Anyone thinks of search web using DOS way?
« Reply #6 on: June 02, 2007, 11:25:33 AM »
If you have Firefox you can just type search terms in the address bar anyway.


I think command line have some vantage. Firstly, command can tell what you want. Music? pictures? news? or just web pages?
Secondly, The typed command can be called back by arrow keys, and the result links is kept in the output unless you clear them.

Carbon Dudeoxide

  • Global Moderator

  • Mastermind
  • Thanked: 169
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Experience: Guru
  • OS: Mac OS
Re: Anyone thinks of search web using DOS way?
« Reply #7 on: June 02, 2007, 07:57:35 PM »
Yeah but it could get a bit complicating like a person doesn't know what it is or someone wants several results. What happens if you type something wrong? in command prompt, if you spell 'echo' wrong, it won't work.

contrex

  • Guest
Re: Anyone thinks of search web using DOS way?
« Reply #8 on: June 03, 2007, 01:52:26 AM »
Yeah but it could get a bit complicating like a person doesn't know what it is or someone wants several results. What happens if you type something wrong? in command prompt, if you spell 'echo' wrong, it won't work.

Yeah, but, like, er, duh, you learn not to do it again.

goldrain

  • Guest
Re: Anyone thinks of search web using DOS way?
« Reply #9 on: June 20, 2007, 01:56:25 AM »
New functions added to cmd4web:

Your can define your own commands to open favorites. Command will be the quickest way to open a link. For example:   
use PHP to open php manul http://www.php.net/manual/en/index.php;
use BLOG to open your blog site.   
   
A favorite link can be set as your homepage.
« Last Edit: June 20, 2007, 02:08:42 AM by goldrain »

patio

  • Moderator


  • Genius
  • Maud' Dib
  • Thanked: 1769
    • Yes
  • Experience: Beginner
  • OS: Windows 7
Re: Anyone thinks of search web using DOS way?
« Reply #10 on: June 20, 2007, 03:46:26 PM »
All these functions have been built into browsers for some time...

But in a command line world they are probably very handy.
" Anyone who goes to a psychiatrist should have his head examined. "

DeltaSlaya



    Apprentice
  • Google
    Re: Anyone thinks of search web using DOS way?
    « Reply #11 on: June 21, 2007, 03:06:34 AM »
    In my opinion this would  be useful for batch programming somehow? Yet not for everyday use as you can't find something on the internet faster than opening a browser with a hotkey, typing a query and hitting enter...
    System specs:
    Intel Core 2 Duo E6600 (up to 3.3 stock V and air)
    ASUS Striker Extreme
    XFX 8600GT XXX Edition
    2x 1gB Corsair XMS2 DDR2-800
    Seagate Barracuda 320gB SATA
    Raidmax Ninja 918 (520W ATXV2.0 PSU)
    -

    Fen_Li



      Beginner

    • G-Smart thing Smart
    • Thanked: 2
      Re: Anyone thinks of search web using DOS way?
      « Reply #12 on: June 22, 2007, 01:39:54 PM »
      hope this help you..

      just save this as whatever.bat
      Code: [Select]
      @echo off
      title Google Search
      :loop
      cls
      echo Type what do you wanna search..
      echo Use Parameter after keyword (/w=web /p=Picture /v=video /m=music)
      echo if keyword have space replace it with "+"
      echo ex:Computer hope : keyword = Computer+hope /w
      set /p q=[G] Search :
      call :start %q%
      goto loop
      :start
      if /i "%2"=="/w" start http://www.google.com/search?q=%1
      if /i "%2"=="/p" start http://images.google.com/images?q=%1
      if /i "%2"=="/v" start http://video.google.com/videosearch?q=%1
      if /i "%2"=="/m" start http://www.google.com/search?q=%1+mp3
      goto :eof
      « Last Edit: June 22, 2007, 02:18:49 PM by Fen_Li »
      ..Still Newbie KID..

      richenstony

      • Guest
      Re: Anyone thinks of search web using DOS way?
      « Reply #13 on: June 22, 2007, 01:58:36 PM »
      This is pretty cool  ;D i think its good for single searchs

      goldrain

      • Guest
      Re: Anyone thinks of search web using DOS way?
      « Reply #14 on: June 26, 2007, 02:32:56 AM »
      Now I found some way to put the command window in sidebar of browser.
      This will make CMD handier. Find the way in FAQ page of cmd4web.