shdotenv icon indicating copy to clipboard operation
shdotenv copied to clipboard

dotenv for shells with support for POSIX-compliant and multiple .env file syntax

Results 5 shdotenv issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** I'm using shdotenv in a special Laradock project structure, where I merge Laradock's and my environment variables into one: ```sh...

Unless I understood the docs wrong, `shdotenv export` ignores `-e /dev/null` Ex: ``` $ echo "VAR1=foo" > .env $ shdotenv -e /dev/null -e .env export HOME='/root' PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin' PWD='/tmp' SHLVL='2' TERM='xterm'...

Currently README instructs ``` $ wget https://github.com/ko1nksm/shdotenv/releases/latest/download/shdotenv -O $HOME/bin/shdotenv $ chmod +x $HOME/bin/shdotenv ``` However, `$HOME/bin` is not a standard location - not available on Ubuntu Linux or macOS based...

I would like to store binary strings like this: https://stackoverflow.com/a/46458707/1049833 - but it doesn't seem to be supported by shdotenv because "using without quotes is not allowed". Is there any...

ACCEPTABLE

A use-case which I find very useful is to add a php output format. This allows users to generate a simple php file, that can be included into existing projects...