In most shells, you can launch commands or processes in the background by appending an ampersand (&
) to the command:
python file.py &
Das Problem ist, dass, wenn ich einen Befehl (z. B. ein Python-Skript) ausführt, das Terminal oder Skript wartet, bis das Programm einen Exit-Status zurückgibt, damit es fortfahren oder zum Terminal zurückkehren kann. Gibt es eine Möglichkeit, dies zu umgehen?
In most shells, you can launch commands or processes in the background by appending an ampersand (&
) to the command:
python file.py &
Several choices:
man screen
, screen
, myprorgamm
, C-a d
, screen -r
.nohup myprogramm
myprogramm &
Yes. If you're using Bash or a similar shell, type:
./your_script.py &