0
我想從輸入文件中獲得所有行,從%%開始,並使用powershell將其粘貼到輸出文件中。從文本文件複製特定的行,以使用powershell分離文件
用下面的代碼,但是我只得到首發輸出文件的最後一行與%%所有的線,而不是開始%%。
我只有開始學習PowerShell中,請大家幫忙
$Clause = Get-Content "Input File location"
$Outvalue = $Clause | Foreach {
if ($_ -ilike "*%%*")
{
Set-Content "Output file location" $_
}
}