mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 16:35:24 +02:00
set-location: add Spanish translation (#15205)
This commit is contained in:
parent
93b6f89a61
commit
3c60fedf62
1 changed files with 33 additions and 0 deletions
33
pages.es/windows/set-location.md
Normal file
33
pages.es/windows/set-location.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
# Set-Location
|
||||
|
||||
> Muestra el directorio de trabajo actual o va a un directorio diferente.
|
||||
> Nota: Este comando sólo se puede utilizar a través de PowerShell.
|
||||
> Más información: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/set-location>.
|
||||
|
||||
- Va al directorio especificado:
|
||||
|
||||
`Set-Location {{ruta\al\directorio}}`
|
||||
|
||||
- Va a un directorio específico en una unidad diferente:
|
||||
|
||||
`Set-Location {{C}}:{{ruta\al\directorio}}`
|
||||
|
||||
- Va y muestra la ubicación del directorio especificado:
|
||||
|
||||
`Set-Location {{ruta\al\directorio}} -PassThru`
|
||||
|
||||
- Sube al padre del directorio actual:
|
||||
|
||||
`Set-Location ..`
|
||||
|
||||
- Va al directorio principal del usuario actual:
|
||||
|
||||
`Set-Location ~`
|
||||
|
||||
- Regresa/va al directorio elegido anteriormente:
|
||||
|
||||
`Set-Location {{-|+}}`
|
||||
|
||||
- Va a la raíz de la unidad actual:
|
||||
|
||||
`Set-Location \`
|
Loading…
Add table
Reference in a new issue