Skip to content

Instantly share code, notes, and snippets.

@cpoll
cpoll / ANSIColorize.psm1
Last active February 22, 2019 14:42
Powershell helpers for writing ANSI colors (for use with Jenkins ANSI color plugin)
function Write-HostAnsi {
<#
.SYNOPSIS
Wrapper for Write-Host, adds ANSI SGR codes based on -foregroundColor and -backgroundColor
#>
param(
$object,
$foregroundColor,
$backgroundColor