param([string]$fileName='') | |
$content = Get-Content $fileName | |
foreach ($line in $content) | |
{ | |
Write-Host $line | |
$scriptPath = '.\FileWithContentGenerator.ps1' | |
invoke-expression "$scriptPath $line" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment