It could be helpful some times to initialize or overwrite environmenet variables for that command.
Pretending a --env option is implemented for that, an example could be:
secbox --env PYTHONPATH=/opt/imtools python3.11 -m imtools.im help
It should also work for appending data, like:
secbox --env PYTHONPATH=$PYTHONPATH:/opt/imtools python3.11 -m imtools.im help
The --env option could be passed multiple time.
secbox --env PYTHONPATH=$PYTHONPATH:/opt/imtools --env ABC=DEF python3.11 -m imtools.im help
It could be helpful some times to initialize or overwrite environmenet variables for that command.
Pretending a
--envoption is implemented for that, an example could be:secbox --env PYTHONPATH=/opt/imtools python3.11 -m imtools.im helpIt should also work for appending data, like:
The
--envoption could be passed multiple time.