mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 11:55:34 +02:00
%: add Spanish translation (#16643)
This commit is contained in:
parent
a15fa3337d
commit
0ed3a84649
1 changed files with 28 additions and 0 deletions
28
pages.es/common/%.md
Normal file
28
pages.es/common/%.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# Percent sign
|
||||
|
||||
> Bash incorporado para administrar los trabajos activos o suspendidos.
|
||||
> Más información: <https://www.gnu.org/software/bash/manual/bash.html#Job-Control-Basics>.
|
||||
|
||||
- Trae el trabajo actual al frente:
|
||||
|
||||
`%`
|
||||
|
||||
- Trae el trabajo previo al frente:
|
||||
|
||||
`%-`
|
||||
|
||||
- Trae el trabajo por su número `n` al frente:
|
||||
|
||||
`%{{n}}`
|
||||
|
||||
- Trae el trabajo cuyo comando empieza con `cadena` al frente:
|
||||
|
||||
`%{{cadena}}`
|
||||
|
||||
- Trae el trabajo cuyo comando contiene `cadena` al frente:
|
||||
|
||||
`%?{{cadena}}`
|
||||
|
||||
- Reanuda un trabajo suspendido:
|
||||
|
||||
`%{{1}} &`
|
Loading…
Add table
Reference in a new issue