Open
Description
I would expect to be able to say e.g., podman run --rm -it sagemath/sagemath python -c 'print(1)'
, but unfortunately one must escape the arguments like this: podman run --rm -it sagemath/sagemath python3 -c 'print\(1\)'
. (Of course in practice I want to pass a slightly more complicated command ;-)).
This is probably due to the following line using $*
instead of $@
:
Line 8 in 7726cd9