11 lines
276 B
Bash
11 lines
276 B
Bash
#!/bin/zsh
|
|
##? envsubst - fall-back wrapper in the event the envsubst command does not exist.
|
|
|
|
#function envsubst {
|
|
if (( $+commands[envsubst] )); then
|
|
command envsubst "$@"
|
|
else
|
|
python -c 'import os,sys;[sys.stdout.write(os.path.expandvars(l)) for l in sys.stdin]'
|
|
fi
|
|
#}
|