Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
#!/bin/bash | |
# | |
# Update things to be compatible with Molecule 3.0. | |
# | |
# This script is NOT idempotent, and should never be run again. | |
exit 1 | |
export LINT_STRING="lint: | | |
set -e | |
yamllint . |