what does "%" mean in powershell syntax
-
segunda-feira, 15 de fevereiro de 2010 13:42I know that typically the "%" character is for mod functionality. In some powershell scripts I've come across, I've noticed % being used after the | character and I can't seem to find what the syntax means.
For example. "$old | % { Remove-Item $_.SPBackupDirectory -Recurse }" I can't figure out what | % is doing..... is it a shorthand foreach expression?
Tony Testa www.tonytestasworld.com
Todas as Respostas
-
segunda-feira, 15 de fevereiro de 2010 13:46Moderador
Yes, it is a shortcut notation or alias for ForEach-Object:
PS > get-alias -definition foreach-object CommandType Name Definition ----------- ---- ---------- Alias % ForEach-Object Alias foreach ForEach-Object
The above only works with PowerShell v2. V1 doesn't support the -Definition parameter.- Marcado como Resposta Marco ShawModerator segunda-feira, 15 de fevereiro de 2010 13:46
-
terça-feira, 16 de fevereiro de 2010 16:22Also this is math operator: division with a reminder. When percent sign is placed after pipeline sign "|" — it always threated as Foreach-Object alias. In all other cases it is threated as math operator.
http://www.sysadmins.lv

