1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 05:02:09 +02:00

bash: update Spanish translation (#11981)

* bash: update Spanish translation

---------

Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Alejandro Cervera 2024-01-03 08:27:46 -05:00 committed by GitHub
parent b4d29c495e
commit e3f7dd2ca5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,17 @@
# bash # bash
> Bourne-Again SHell. > Bourne-Again SHell, un intérprete de línea de comandos compatible con `sh`.
> Intérprete de línea de comandos compatible con `sh`. > Vea también: `zsh`; `histexpand`, para expansión de historial de comandos.
> Más información: <https://www.gnu.org/software/bash/>. > Más información: <https://www.gnu.org/software/bash/>.
- Inicia un intérprete de comandos interactivo: - Inicia un intérprete de comandos interactivo:
`bash` `bash`
- Inicia el intérprete sin leer archivos de configuración:
`bash --norc`
- Ejecuta un comando: - Ejecuta un comando:
`bash -c "{{comando}}"` `bash -c "{{comando}}"`
@ -26,8 +30,8 @@
- Ejecuta comandos desde `stdin` (entrada estándar): - Ejecuta comandos desde `stdin` (entrada estándar):
`bash -s` `{{echo "echo 'bash es ejecutado'"}} | bash`
- Imprime la información de la versión de bash (use `echo $BASH_VERSION` para ver sólo la versión sin la información sobre la licencia): - Inicia el intérprete [r]estringido:
`bash --version` `bash -r`