This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
|
# vim: set ft=zsh sw=4 ts=4 sts=4 et :
|
|
|
|
function dotenv() {
|
|
if [ -f .env ]; then
|
|
. ./.env || return $?
|
|
eval $(awk -F= '{print "export",$1}' .env)
|
|
fi
|
|
}
|
|
|
|
dotenv
|