From 26c4e0fa714325892fe924d73aa359f800468c14 Mon Sep 17 00:00:00 2001 From: Martin Chaparro Date: Sat, 3 Dec 2022 19:17:43 -0500 Subject: [PATCH] Actualizar 'README.md' --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 405b141..a2a26b4 100644 --- a/README.md +++ b/README.md @@ -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" +``` \ No newline at end of file