1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 00:35:33 +02:00

export: add Spanish translation (#15213)

Co-authored-by: Darío Hereñú <magallania@gmail.com>
This commit is contained in:
Igor Támara 2024-12-19 12:54:21 -05:00 committed by GitHub
parent ed0aaf275f
commit aabddece44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
pages.es/linux/export.md Normal file
View file

@ -0,0 +1,24 @@
# export
> Exporta variables de un intérprete de comandos (shell) a procesos hijos.
> Más información: <https://www.gnu.org/software/bash/manual/bash.html#index-export>.
- Establece una variable de entorno:
`export {{VARIABLE}}={{valor}}`
- Quita una variable de entorno:
`export -n {{VARIABLE}}`
- Exporta una función a los procesos hijos:
`export -f {{NOMBRE_FUNCION}}`
- Añade una ruta a la variable de ambiente `PATH`:
`export PATH=$PATH:{{ruta/a/añadir}}`
- Muestra una lista de variables exportadas activas en forma de comando de interfaz de comandos (shell command form):
`export -p`