1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 10:55:36 +02:00
tldr/pages/common/%.md
Lena 6fd816e36e
pages/*: use lowercase n for integer placeholders (#16033)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-03-27 21:23:12 +05:30

441 B

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 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}} &