db/scripts/env.sh

6 lines
84 B
Bash
Raw Normal View History

#! /bin/bash
2023-06-09 01:29:13 +00:00
file=${1:-./.env}
while read line; do export "$line"; done < "$file"