mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
9185fbf1fe
Co-authored-by: Darío Hereñú <magallania@gmail.com>
430 B
430 B
%
Manage jobs. More information: https://www.gnu.org/software/bash/manual/bash.html#Job-Control-Basics.
- Bring the current job to front:
%
- Bring the previous job to front:
%-
- Bring the job number
nto front:
%{{n}}
- Bring a job whose command starts with
stringto front:
%{{string}}
- Bring a job whose command contains
stringto front:
%?{{string}}
- Resume a suspended job:
%{{1}} &