Skip to content

Commit

Permalink
{: add Spanish translation
Browse files Browse the repository at this point in the history
  • Loading branch information
kant authored Jan 3, 2025
1 parent 3f4013f commit 1c176f4
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pages.es/common/{.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Llave

> Sintaxis de intérprete de comandos polivalente.
> Más información: <https://www.gnu.org/software/bash/manual/bash.html#index-hash>.
- Aisla nombres de variables:

`echo ${HOME}trabajo`

- Apuntala expandiendo secuencias:

`echo {1..3} {a..c}{dir1,dir2,dir3}`

- Comprueba si `variable` está definida antes de devolver el texto:

`echo ${variable:+variable está definida y contiene $variable}`

- Establece valores por defecto en caso de que `variable` no esté establecida:

`echo ${variable:-default}`

- Devuelve la longitud de `variable` en caracteres:

`echo ${#variable}`

- Devuelve un trozo de cadena:

`echo ${variable:3:7}`

- Expande recursivamente una `variable`:

`echo ${!variable}`

- Pone todos los caracteres en mayúsculas:

`echo ${variable^^}`

0 comments on commit 1c176f4

Please sign in to comment.