Skip to content

Instantly share code, notes, and snippets.

@MacoChave
Created March 2, 2022 05:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MacoChave/e127e5973301a49981a68207efccf1a8 to your computer and use it in GitHub Desktop.
Save MacoChave/e127e5973301a49981a68207efccf1a8 to your computer and use it in GitHub Desktop.
Productividad Windows y LInux

Comandos Linux

Recuperar control del equipo congelado

ALT + ImprPrint + R + E + I + S + U + B

Envía la señal de finalización inmediata (SIGKILL) a todos los procesos activos, incluso el init

ALT + ImprPrint + L

Crear varias carpetas en linux

Comandos Windows

Crear varias carpetas con Simbolo del Sistema (CMD)

md uno dos tres

Crear varias carpetas con PowerShell

"uno", "dos", "tres" | % {New-Item -Name "$ _" -ItemType "Directory"}

Crear carpeta en PowerShell

New-Item -Name "Nueva Carpeta" -ItemType "Directory" ni "Nueva Carpeta" -ItemType Directory

Crear nuevo archivo en PowerShell

ni Archivo.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment