LinuxCommandLibrary

%

Background a process

TLDR

Bring the current job to front

$ %
copy

Bring the previous job to front
$ %-
copy

Bring the job number n to front
$ %[n]
copy

Bring a job whose command starts with string to front
$ %[string]
copy

Bring a job whose command contains string to front
$ %?[string]
copy

Resume a suspended job
$ %[1] &
copy

Copied to clipboard