Skip to content

Instantly share code, notes, and snippets.

@p0rkjello
Last active August 27, 2021 13:12
Show Gist options
  • Save p0rkjello/a3c8a97852f5782d23cf555ed6381d99 to your computer and use it in GitHub Desktop.
Save p0rkjello/a3c8a97852f5782d23cf555ed6381d99 to your computer and use it in GitHub Desktop.
PowerShell HERE-STRING
# PowerShell Here-String
# @"..."@
# @'...'@
# As CSV
$CSV = @"
Column1,Column2,Column3
Line1a,Line1b,Line1c
Line2a,Line2b,Line2c
"@ | ConvertFrom-Csv
# Create file
@'
param([string]$name)
"Hello $name!"
'@ > hello.ps1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment