mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
82eb0aa1b6
Co-authored-by: Darío Hereñú <magallania@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
21 lines
586 B
Markdown
21 lines
586 B
Markdown
# mklink
|
|
|
|
> Crea enlaces simbólicos.
|
|
> Más información: <https://learn.microsoft.com/windows-server/administration/windows-commands/mklink>.
|
|
|
|
- Crea un enlace simbólico a un archivo:
|
|
|
|
`mklink {{ruta\al\archivo_enlace}} {{ruta\al\archivo_fuente}}`
|
|
|
|
- Crea un enlace simbólico a un directorio:
|
|
|
|
`mklink /d {{ruta\al\directorio_enlace}} {{ruta\al\directorio_fuente}}`
|
|
|
|
- Crea un enlace duro a un archivo:
|
|
|
|
`mklink /h {{ruta\al\archivo_enlace}} {{ruta\al\archivo_fuente}}`
|
|
|
|
- Crea un punto de unión de directorio:
|
|
|
|
`mklink /j {{ruta\al\directorio_enlace}} {{ruta\al\archivo_fuente}}`
|