I'd like to do a one line bash command that automatically does this:

 screen -S myserver 
 python myserver.py
 CTRL A, D (detach)

I think this won't work:

 screen -S myserver && python myserver.py

because `python myserver.py` won't be started *inside* the `screen`.

Note: tmux and nohup tag because it's the closest to screen I could find.