6 lines
132 B
Bash
6 lines
132 B
Bash
#!/usr/bin/env zsh
|
|
|
|
function envsubst {
|
|
python -c 'import os,sys;[sys.stdout.write(os.path.expandvars(l)) for l in sys.stdin]'
|
|
}
|
|
|