Created
December 13, 2016 15:15
-
-
Save megamorf/10494d4245c529365555ae90d478fcc4 to your computer and use it in GitHub Desktop.
Echo-Args PowerShell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Echo-Args | |
{ | |
for($i=0;$i -lt $args.length;$i++) | |
{ | |
"Arg $i is <$($args[$i])>" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment