I am working with some open-source code and I wanted to make sure I understand what they mean.
They run a command which goes like this:
python /some_directory/zipfile.zip "$@"
Two questions:
I read about "$@"
, and I thi
- Does
"$@"
mean that all arguments which are passed, pass along to the python command? - What does the python command run exactly in a zip file? I suspect that it runs a file called __main__.py inside the zip file. Is that true?
Thanks in advance!