Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| [CmdletBinding()] | |
| param( | |
| [Parameter(Mandatory)] | |
| [string]$ImageName = 'atlassian/bamboo-agent-base', | |
| [string]$TagLike = '10.*-ubi9-jdk21', | |
| [switch]$ShowAllTags = $false | |
| ) | |
| begin { | |
| $ErrorActionPreference = 'Stop' |