Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to create repeating letters

$
0
0

Summary: Learn how to easily create duplicate letters by using Windows PowerShell.

Hey, Scripting Guy! Question How can I use Windows PowerShell to easily create a specific number of letters in a repetitive fashion?

Hey, Scripting Guy! Answer To create repetitive letters, all you need to do is to “multiply” them, for example:

PS C:\> "a"*5

aaaaa


Viewing all articles
Browse latest Browse all 3333

Trending Articles