mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
7 lines
133 B
Bash
7 lines
133 B
Bash
#!/bin/bash
|
|
|
|
debug_print_helper_variables() {
|
|
for var in $(compgen -v | grep '^HLPR_'); do
|
|
echo "$var=${!var}"
|
|
done
|
|
} |