...
Code Block |
---|
SINGULARITYENV_HELLO=world singularity exec centos7.img env | grep HELLO > HELLO=world |
This will overwrite any host environment variables with the same name. If you need to clear the host environment data, use --cleanenv
.
...
...
Code Block |
---|
SINGULARITYENV_HELLO=world singularity exec centos7.img env | grep HELLO > HELLO=world |
This will overwrite any host environment variables with the same name. If you need to clear the host environment data, use --cleanenv
.
...