answersLogoWhite

0


Best Answer

* matches anything. *.jpg would mean any file with a .jpg extension. 1*.jpg would mean any file where the name begins with 1 and ends with a .jpg ? matches any single character. ?.jpg would match a.jpg, 1.jpg, or F.jpg but not a1.jpg. Several ? wildcards can be used so that ??.jpg would match any jpg file with a two letter name.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

? and the *

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the two wild card characters that can be use in command line?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are wild card characters in dos?

* and ?


What are the wild card characters in dos?

It's * and ?


What is a wild card in command prompt?

A wildcard character is a character that can stand in for any other character.On the command line, the normal wildcards are * (match zero or more characters) and ? (match exactly one character).You use them for example when listing or selecting files, like the commandc:\>dir t*would list all files in that directory with a name starting with "t".


What are the ratings and certificates for Launch My Line - 2009 Wild Card 1-5?

Launch My Line - 2009 Wild Card 1-5 is rated/received certificates of: Australia:PG


What character such as an asterisk that is used as a substitute for characters in a file is called what?

wild card


Which command is used to advertise the network 150.12.32.0?

To configure EIGRP to advertise specific subnets only, use the "wild card mask" option with the network command.


What is the wild card for multiple characters?

I believe it would be * example find *.mp3 Thank You Kris - cssraven.com


What is a special character that can stand for any other character or in some cases a group of characters?

wild card


What are wild card?

A wild card is one which can have any value or suit in a game at the discretion of the whoever holds it.


The term given to an asterisk or other character used to substitute for several characters in a file search?

Wild card


What is a Search engine that uses wild cards?

A "WILD CARD" is a character which is used to replace a single character, or a string of characters within or at the end of a word. Two wild card characters in use are: "*" (the asterisk symbol) and "?" (a question mark). For example: wom?n will retrieve both the words "woman" and "women", while bank* will retrieve bank, banks, banking, banker, bankrupt, etc.


What use wild card in ms dos?

A Wild card in MS-DOS is a character that can be used to filter the data that you are searching. Wild cards that MS-DOS uses are * and ? This can be understood by the following example: If you want to search all the files starting with the letter - a enter the following command in he command line dir a*.* Of if you want to search all the text files that will start with 'amin', you can use: dir amin*.txt Now, if you want all the files that begin with any letter and ends with 'amin.txt' you can use: dir ?amin.txt which will show you: aamin.txt bamin.txt camin.txt This can be understood completely if you try it out yourself Thank you