Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| #!/usr/bin/env bash | |
| function walk() { | |
| for secret in $(vault list $1 | tail -n +3) | |
| do | |
| if [[ ${secret} == *"/" ]] ; then | |
| walk "${1}${secret}" | |
| else | |
| echo "${1}${secret}" | |
| fi |