Powershell - colchetes

O Powershell oferece suporte a três tipos de suportes.

  • Parenthesis brackets. − ()

  • Braces brackets. − {}

  • Square brackets. − []

Parênteses

Este tipo de colchetes é usado para

  • passar argumentos

  • inclua vários conjuntos de instruções

  • resolver ambigüidade

  • criar matriz

Exemplo

> $array = @("item1", "item2", "item3")
 
> foreach ($element in $array) { $element }
item1
item2
item3

Colchetes

Este tipo de colchetes é usado para

  • anexar declarações

  • comandos de bloco

Exemplo

$x = 10

if($x -le 20){
   write-host("This is if statement")
}

Isso produzirá o seguinte resultado -

Resultado

This is if statement.

Colchetes

Este tipo de colchetes é usado para

  • acesso ao array

  • acesso a hashtables

  • filtrar usando expressão regular

Exemplo

> $array = @("item1", "item2", "item3")
 
> for($i = 0; $i -lt $array.length; $i++){ $array[$i] }
item1
item2
item3
 
>Get-Process [r-s]*
 Handles    NPM(K)     PM(K)    WS(K)   VM(M)   CPU(s)     Id    ProcessName
-------    ------     -----     -----   -----   ------     --    -----------  
    320        72     27300     33764    227     3.95    4028    SCNotification 
   2298        77     57792     48712    308             2884    SearchIndexer
   ...