splitting into more modular structure

This commit is contained in:
2019-12-08 15:38:09 -08:00
parent ab1ef3fcbb
commit 1762d6246f
8 changed files with 39 additions and 6 deletions

5
bash.d/10-dotenv.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
function dotenv {
export "$(grep -E -v '^#' .env | xargs)"
}