11 lines
145 B
PowerShell
11 lines
145 B
PowerShell
$file = @'
|
|
|
|
ABC
|
|
ABC, DEF
|
|
ABC, DEF, G, H
|
|
'@ -split [Environment]::NewLine
|
|
|
|
foreach ($line in $file)
|
|
{
|
|
Out-Quibble -Text ($line -split ", ")
|
|
}
|