dotfiles/home/private_dot_config/zsh/zexists.d/cmd/anti-envsubst.zsh
2023-02-21 10:41:28 -06:00

7 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]'
}