Actualizar 'README.md'

This commit is contained in:
2022-12-03 19:17:43 -05:00
parent f55d527ec9
commit 26c4e0fa71

View File

@@ -1,2 +1,9 @@
# windows-tips
## Renombrar archivos masivamente PowerShell
```sh
get-childitem -recurse | rename-item -NewName {$_.name -replace "procesado","" }
```
## Copiar clave ssh a servidor linux
```sh
type $env:USERPROFILE\.ssh\id_rsa.pub | ssh suma@45.183.247.209 "cat >> .ssh/authorized_keys"
```