Created
October 28, 2021 16:59
-
-
Save xlyk/0b5bf57e0aac31b85a6636af480ec904 to your computer and use it in GitHub Desktop.
get list of all airflow variables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for KEY in $(airflow variables list | tail -n +2); do | |
echo "$KEY=$(airflow variables get $KEY)" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment