Skip to main content
replaced http://unix.stackexchange.com/ with https://unix.stackexchange.com/
Source Link

Using tmux you can start a detached process, which is effectively "hidden", and attach it to check its status, as and when you like. If you start it from a terminal, you can even close that terminal session, and subsequently attach to your tmux python process from another terminal ...

This example uses watch as the command to run, but just substitute your python command... It starts the tmux session in an already deteched state.

tmux new -d 'watch -n 1 -d date' 

To view the current state of the "hidden" (detached) session, just type tmux attach in a Terminal window...

You can also use screen, but I believe tmux may be the better choice, based on the comments in this Unix-&-Linux answerUnix-&-Linux answer...

Using tmux you can start a detached process, which is effectively "hidden", and attach it to check its status, as and when you like. If you start it from a terminal, you can even close that terminal session, and subsequently attach to your tmux python process from another terminal ...

This example uses watch as the command to run, but just substitute your python command... It starts the tmux session in an already deteched state.

tmux new -d 'watch -n 1 -d date' 

To view the current state of the "hidden" (detached) session, just type tmux attach in a Terminal window...

You can also use screen, but I believe tmux may be the better choice, based on the comments in this Unix-&-Linux answer...

Using tmux you can start a detached process, which is effectively "hidden", and attach it to check its status, as and when you like. If you start it from a terminal, you can even close that terminal session, and subsequently attach to your tmux python process from another terminal ...

This example uses watch as the command to run, but just substitute your python command... It starts the tmux session in an already deteched state.

tmux new -d 'watch -n 1 -d date' 

To view the current state of the "hidden" (detached) session, just type tmux attach in a Terminal window...

You can also use screen, but I believe tmux may be the better choice, based on the comments in this Unix-&-Linux answer...

added 12 characters in body
Source Link
Peter.O
  • 33.8k
  • 32
  • 120
  • 167

Using tmux you can start a detached process, which is effectively "hidden", and attach it to check its status, as and when you like. If you start it from a terminal, you can even close that terminal session, and subsequently attach to your tmux python process from some otheranother terminal  ...

This example uses watch as the command to run, but just substitute your python command... It starts the tmux session in an already deteched state.

tmux new -d 'watch -n 1 -d date' 

To view the current state of the "hidden" (detached) session, just type tmux attach in a Terminal window...

You can also use screen, but I believe tmux may be the better choice, based on the comments in this Unix-&-Linux answer...

Using tmux you can start a detached process, which is effectively "hidden", and attach it to check its status, as and when you like. If you start it from a terminal, you can even close that terminal session and attach to your tmux python process from some other terminal...

This example uses watch as the command to run, but just substitute your python command... It starts the tmux session in an already deteched state.

tmux new -d 'watch -n 1 -d date' 

To view the current state of the "hidden" (detached) session, just type tmux attach in a Terminal window...

You can also use screen, but I believe tmux may be the better choice, based on the comments in this Unix-&-Linux answer...

Using tmux you can start a detached process, which is effectively "hidden", and attach it to check its status, as and when you like. If you start it from a terminal, you can even close that terminal session, and subsequently attach to your tmux python process from another terminal  ...

This example uses watch as the command to run, but just substitute your python command... It starts the tmux session in an already deteched state.

tmux new -d 'watch -n 1 -d date' 

To view the current state of the "hidden" (detached) session, just type tmux attach in a Terminal window...

You can also use screen, but I believe tmux may be the better choice, based on the comments in this Unix-&-Linux answer...

deleted 3 characters in body
Source Link
Peter.O
  • 33.8k
  • 32
  • 120
  • 167

Using tmux you can start a detached process, which is effectively "hidden", and re-attachattach it to check its status, as and when you like. YouIf you start it from a terminal, you can even close the launcingthat terminal session and re-attachattach to your tmux python process from anothersome other terminal...

This example uses watch as the terminal command to run, but just substitute your python command... It starts the tmux session in an already deteched state.

tmux new -d 'watch -n 1 -d date' 

To view the current state of the "hidden" (detached) session, just type tmux attach in a Terminal window...

You can also use screen, but I believe tmux may be the better choice, based on the comments in this Unix-&-Linux answer...

Using tmux you can start a detached process, which is effectively "hidden", and re-attach it as and when you like. You can even close the launcing terminal session and re-attach your tmux python process from another terminal...

This example uses watch as the terminal command to run, but just substitute your python command... It starts the tmux session in an already deteched state.

tmux new -d 'watch -n 1 -d date' 

To view the current state of the "hidden" (detached) session, just type tmux attach in a Terminal window...

You can also use screen, but I believe tmux may be the better choice, based on the comments in this Unix-&-Linux answer...

Using tmux you can start a detached process, which is effectively "hidden", and attach it to check its status, as and when you like. If you start it from a terminal, you can even close that terminal session and attach to your tmux python process from some other terminal...

This example uses watch as the command to run, but just substitute your python command... It starts the tmux session in an already deteched state.

tmux new -d 'watch -n 1 -d date' 

To view the current state of the "hidden" (detached) session, just type tmux attach in a Terminal window...

You can also use screen, but I believe tmux may be the better choice, based on the comments in this Unix-&-Linux answer...

added 271 characters in body
Source Link
Peter.O
  • 33.8k
  • 32
  • 120
  • 167
Loading
Source Link
Peter.O
  • 33.8k
  • 32
  • 120
  • 167
Loading