Alright. So I need a one-line linux command line command that needs to automatically boot up a python environment and execute a command. So the functionality I want is:
bash><some command here telling it to boot up python and print blah>
<enters python environment>
>>> print blah
blah
So basically, I am using xterm -e /bin/bash python
And I want to do something like python;print blah
However, it won't execute the second statement in the python environment in the new terminal. It waits until I quit() the other shell then it executes print blah.
How can I make it do this?