라벨이 $_인 게시물 표시

The meaning of '$_' in Powershell

이미지
When you are using Powershell, you easily run into this: $_ The meaning is the variable for the current values in the pipe line. For example, >>> 1,2,3 | %{ write-host $}% 1 2 3 Additionally, %{ } block means every value in the array. Thanks Have Fun!