DEBSOURCES
Skip Quicknav
sources / golang-github-google-certificate-transparency / 1.3.2-2 / trillian / examples / deployment / docker / envsubst / envsubst_inplace.sh
12345678
#!/bin/sh -e for f in "$@"; do tmpfile=$(mktemp) envsubst < "$f" > "$tmpfile" mv "$tmpfile" "$f" done