escribe fg
y presiona enter
en la terminal.
fg [jobspec]
Resume jobspec in the foreground, and make
it the current job. If jobspec is not
present, the shell’s notion of the current
job is used. The return value is that of
the command placed into the foreground, or
failure if run when job control is dis-
abled or, when run with job control
enabled, if jobspec does not specify a
valid job or jobspec specifies a job that
was started without job control.
Escriba lo siguiente para volver a poner el trabajo en primer plano:
fg
Esto se debe a que suspendió el trabajo, lo que significa que no está haciendo nada mientras no puede verlo. De hecho, también puede permitir que un trabajo se ejecute en segundo plano (ingresando bg
). Consulte Control de trabajos para obtener más información.
Puedes usar fg
para recuperar la actividad en primer plano
O
Puedes usar bg
para mover la actividad actual al fondo.