Answers for "linux env file"

1

linux source env file

set -a
. ./env.txt
set +a
Posted by: Guest on October-09-2021
0

linux source env file

export $(xargs < .env)

# Explanation
# When we have a .env file like this:

key=val
foo=bar
Posted by: Guest on October-09-2021
1

linux source env file

# convenience command to prepend export to the beginning of
awk '{print "export " $0}' envfile
Posted by: Guest on October-09-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language