dotfiles/home/private_dot_config/zsh/zexists.d/cmd/anti-envsubst.zsh

7 lines
132 B
Bash
Raw Normal View History

2023-02-21 09:44:47 -06:00
#!/usr/bin/env zsh
function envsubst {
python -c 'import os,sys;[sys.stdout.write(os.path.expandvars(l)) for l in sys.stdin]'
}