mirror of
https://github.com/fort-nix/nix-bitcoin.git
synced 2024-11-26 08:10:41 +03:00
7 lines
339 B
Bash
7 lines
339 B
Bash
|
# Start an interactive bash session in the current bash environment.
|
||
|
|
||
|
# BASH_ENVIRONMENT contains definitions of read-only variables like 'BASHOPTS' that
|
||
|
# cause warnings on importing. Suppress these warnings during bash startup.
|
||
|
BASH_ENVIRONMENT=<(declare -p; declare -pf) \
|
||
|
bash --rcfile <(echo 'source $BASH_ENVIRONMENT 2>/dev/null')
|