Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hbulens/3e91e66a65352a9de028cbb29a82e60f to your computer and use it in GitHub Desktop.
Save hbulens/3e91e66a65352a9de028cbb29a82e60f to your computer and use it in GitHub Desktop.
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