I can run a python script from a bash shell like so:
>> python script.pyI can also start an iPython kernel and connect multiple iPython consoles to the same kernel like so:
>> ipython kernel...To connect another client to this kernel, use:--existing kernel-8987.jsonthen, for as many consoles as I would like, I execute
>> jupyter console --existing kernel-8987.jsonHowever, what I would like to do is start a kernel, but then run scripts without opening a console. I'd like to do something like this:
>> ipython --existing kernel-8987.json script.pyIs this possible to do this somehow?