Open In App

fg command in Linux with examples

fg command in linux used to put a background job in foreground.

Syntax:



fg [job_spec]

job_spec may be:

%n : Refer to job number n.
%str : Refer to a job which was started by a command beginning with str.
%?str : Refer to a job which was started by a command containing str.
%% or %+ : Refer to the current job. fg and bg will operate on this job if no job_spec is given.
%- : Refer to the previous job.



Options for fg command :

Article Tags :