jeudi 19 juillet 2018

Arrêter une tâche [terminal]

Lancer l'application :

$ gedit test.sh

Taper la combinaison de touche ctrl + z, l'application s'arrête :

^Z
[1]+  Arrêté                gedit test.sh

La reprendre en tapant fg dans la console :

$ fg
gedit test.sh


Variante pour libérer la console après avoir tapé ctrl + z, taper bg au lieu de fg dans la console :


$ bg
[1]+ gedit test.sh &