The Artima Developer Community
Sponsored Link

.NET Buzz Forum
Favorite command prompt feature of the day: Wildcard auto-complete

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Jeff Key

Posts: 481
Nickname: jeffreykey
Registered: Nov, 2003

Jeff Key is legally sane, but questionably competent.
Favorite command prompt feature of the day: Wildcard auto-complete Posted: Apr 3, 2004 2:32 PM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by Jeff Key.
Original Post: Favorite command prompt feature of the day: Wildcard auto-complete
Feed Title: Jeff Key
Feed URL: http://www.asp.net/err404.htm?aspxerrorpath=/jkey/Rss.aspx
Feed Description: Topics revolve around .NET and the Windows platform.
Latest .NET Buzz Posts
Latest .NET Buzz Posts by Jeff Key
Latest Posts From Jeff Key

Advertisement

Autocomplete in the command prompt is great.  If you didn't know, repeatedly pressing TAB just about anywhere will iterate through the filenames in that directory.  For example, consider the following files:

bar.dll
foo.dll
foo.bar.dll
zoo.exe
zoo.foo.dll

Typing “installutil <tab>” will give you “installutil bar.dll”, another tab results in “installutil foo.dll”, and so on.  This is a great time-saver, but is somewhat cumbersome when the directory has a good number of files in it.  The solution is wildcards:  You can enter any valid wildcard and it will filter on that wildcard.  Example:

“installutil *.exe <tab>” will bring you right to “installutil zoo.exe”.  “installutil *foo* <tab>” will give you foo.dll, foo.bar.dll and zoo.foo.dll.

Happy typing.

Read: Favorite command prompt feature of the day: Wildcard auto-complete

Topic: This is actually NOT an April Fools Joke Previous Topic   Next Topic Topic: Objectspaces hostility and the separation of marketing and technology

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use