Advertisement
Javi

Powershell: tricks

Sep 4th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. Elimina prefijo de fichero:
  2.  
  3. get-childitem *.png | foreach { rename-item $_ $_.Name.Replace("Diapositiva", "") }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement