Results 1 to 4 of 4

Thread: Searching in cmd

  1. #1
    SullivanWalker is offline Senior Member
    Join Date
    Dec 2009
    Posts
    189
    Rep Power
    3

    Default Searching in cmd

    Searching in cmd

    I would like to write a batch file that permits me to search a name in cmd E.g. if I write this command in cmd search c:\new folder a
    every file that has a in the name of it must be listed like see saw or something else

  2. #2
    OrtizCooper is offline Banned
    Join Date
    Dec 2009
    Posts
    186
    Rep Power
    0

    Default

    Use dir command. To see what you can do with dir, use dir /? Command

    for your example
    dir /a-d "C:\new folder\*a*"
    Last edited by nitesh14; 02-06-2010 at 03:29 PM.

  3. #3
    SullivanWalker is offline Senior Member
    Join Date
    Dec 2009
    Posts
    189
    Rep Power
    3

    Default

    No actually I would like to create a command not using dir I would like to write a batch file.

  4. #4
    CarterWatson is offline Senior Member
    Join Date
    Dec 2009
    Posts
    189
    Rep Power
    3

    Default

    Not entirely clear about what you are wanted to complete. If just you want to run the command as a batch, you can just type the same into the batch program and run it.

    If you want to hard code the dir
    dir /a-d "c:\new folder\*a*"

    if you want to supply it as a parameter. In this case enclose the c:\new folder\*s* in the ". Say batch file is test.bat, then run it as test "c:\new folder\*a*"
    dir /a-d %1

    If you are trying to get the result, you may want to pipe it to a few file, like
    dir /a-d "C:\new folder\*a*" > mysearch.txt
    Last edited by nitesh14; 02-06-2010 at 03:29 PM.

Similar Threads

  1. Searching the IP of a router
    By JenkinsReed in forum other peripherals
    Replies: 1
    Last Post: 06-02-2010, 02:26 PM
  2. What Others Are Searching Online
    By HowardAdams in forum Networking Jargons
    Replies: 0
    Last Post: 12-28-2009, 07:40 PM
  3. Searching windows xp
    By CALANTHA in forum Windows XP
    Replies: 0
    Last Post: 09-21-2009, 03:10 PM
  4. Searching and Organizing
    By macrona in forum Everything Else
    Replies: 0
    Last Post: 03-23-2009, 08:24 AM
  5. Searching
    By wengirt in forum General Internet Terms
    Replies: 0
    Last Post: 10-24-2008, 10:08 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48