déplacer le processus de terminal en cours d'exécution vers l'arrière-plan Linux

# Add an ampersand at the end of the command as below:
command &

# If the task is already running, type 
ctrl+z 
# to pause it then 
bg
# to run it in the background
Jittery Jay