Describe the three wildcards you use in PowerShell cmdlets.

What will be an ideal response?

* - Matches any string of characters starting where you place the *. For example, if you type g*, you find anything that starts with the letter g.

? - Matches a single character according to where you place the ?. For example, you could enter r??k to return rick, rock, or rook.

[ ] - Allows you to specify a range of characters. For example, [k-s]ick could return kick, lick, pick, or sick. Or, you could be more specific and enter [kps]ick, which could return kick, pick, or sick.

Computer Science & Information Technology

You might also like to view...

The rule of thumb that predicts that the number of transistors on a CPU will double every 2 years is called ________ Law

A) Moore's B) Charles's C) Intel's D) Boyle's

Computer Science & Information Technology

MC Object-oriented programming takes advantage of_______ relationships.

a) attribute b) model c) class d) None of the above

Computer Science & Information Technology