mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 08:42:08 +02:00
%: add page (#15227)
This commit is contained in:
parent
7439832aaf
commit
d0838c6531
1 changed files with 28 additions and 0 deletions
28
pages/common/%.md
Normal file
28
pages/common/%.md
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# Percent sign
|
||||||
|
|
||||||
|
> 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 a job numbered `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}} &`
|
Loading…
Add table
Reference in a new issue