に意味私は今日、この遭遇しました:は何ん|%PowerShellの
$tests = (Get-ChildItem . -Recurse -Name bin |% { Get-ChildItem $_ -Recurse -Filter *.Unit.Tests.dll } |% { $($_.FullName) })
Write-Host ------------- TESTS -----------
Write-Host $tests
Write-Host -------------------------------
.\tools\xunit\xunit.console.exe $tests -xml test-report.unit.xml
私は何のまわりで私の頭を取得することはできません「|%」はそこに行っています。誰もそれが何のために使用された説明することができますか?
感謝
これはForeach-Objectのエイリアスです。 'get-alias -definition foreach-object' – whatever