6 lines
76 B
Bash
6 lines
76 B
Bash
#!/bin/bash
|
|
|
|
function dotenv {
|
|
export "$(grep -E -v '^#' .env | xargs)"
|
|
}
|