1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 03:15:43 +02:00
tldr/pages/common/%.md
Sebastiaan Speck 9185fbf1fe
pages*/common: allow character in title (#16805)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-06-10 06:24:18 +02:00

28 lines
430 B
Markdown

# %
> 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 `n` to front:
`%{{n}}`
- Bring a job whose command starts with `string` to front:
`%{{string}}`
- Bring a job whose command contains `string` to front:
`%?{{string}}`
- Resume a suspended job:
`%{{1}} &`