DEV Community

Discussion on: Search/replace file names in Powershell

Collapse
 
nektro profile image
Meghan (she/her)
get-childitem * | foreach { rename-item -LiteralPath $_ $_.Name.Replace("", "") }