What I want to do is basically the following during the boot-up process:
- 1. run the " screen bash" command to create a screen session for the next step
- 2. run the "python /mnt/usbkey/pgms/mypgm.py" command to start a Python program in that session
- 3. exit the screen session with a "ctl-a + d" command. This will leave the Python program running in a disconnected mode which I can connect to later via PUTTY with the "screen -r" command if I need to.
Practically, what code/script do I need to create and where does it need to go? And anything else that I need to do to make it all work,
Thanks for any help, references or clarification.....RDK