1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 17:33:38 +02:00

whence: add Spanish translation (#10319)

* whence: add Spanish translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Darío Hereñú 2023-08-09 04:13:13 -03:00 committed by GitHub
parent cd1dcbf8c2
commit 4b980e50c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
pages.es/osx/whence.md Normal file
View file

@ -0,0 +1,24 @@
# whence
> Un comando integrado de zsh para indicar cómo se interpretaría un comando dado.
> Más información: <https://www.unix.com/man-page/OpenSolaris/1/whence/>.
- Interpreta {{comando}}, con expansión si se define como un `alias` (similar al `command -v` integrado):
`whence "{{comando}}"`
- Muestra tipo de {{comando}}, con localización si se define como una función, o binario (equivalente a los `type` y `command -V` integrados):
`whence -v "{{comando}}"`
- Igual que el anterior, excepto que muestra el contenido de las funciones del shell en lugar de la ubicación (equivalente al `which` integrado):
`whence -c "{{comando}}"`
- Igual que el anterior, pero muestra todas las apariciones en la ruta del comando (equivalente al `where` integrado):
`whence -ca "{{comando}}"`
- Buscar sólo el `PATH`para {{comando}}, ignorando los buildins, aliases o funciones del shell (equivalente al comando `where`):
`whence -p "{{comando}}"`