Skip to content

Instantly share code, notes, and snippets.

@StartAutomating
Created September 5, 2025 21:30
Show Gist options
  • Save StartAutomating/1f6385cf540f1260db63e9f5c5f6fb52 to your computer and use it in GitHub Desktop.
Save StartAutomating/1f6385cf540f1260db63e9f5c5f6fb52 to your computer and use it in GitHub Desktop.
Gist tiny handlebars
function handlebars {
$input -replace '\{\{(?<m>.+?)\}\}', {
$m = $_.Groups['m'].Value
if ($m -match '(?>Key|Token|Password)$') { return '' }
return $ExecutionContext.SessionState.PSVariable.Get($m).Value
}
}
'{{pid}}' | handlebars
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment