Skip to content

Instantly share code, notes, and snippets.

@gchait
Created December 13, 2025 12:50
Show Gist options
  • Select an option

  • Save gchait/eb1d6ab534aefab06014d31135e23c85 to your computer and use it in GitHub Desktop.

Select an option

Save gchait/eb1d6ab534aefab06014d31135e23c85 to your computer and use it in GitHub Desktop.
Run many functions as root with injected environment variables
provision() {
xx() {
:
}
yy() {
:
}
zz() {
:
}
xx
yy
zz
}
sudo -E bash -euc "$(declare -f provision); provision"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment