Search found 1 match

by sstegnerr
08 Nov 2018 21:55
Forum: DOS Batch Forum
Topic: Rename Files in Dir
Replies: 1
Views: 2106

Rename Files in Dir

Have following script for deleting the word "KILLERS" from file names in current Dir. I [want] to CHANGE name "KILLERS" to ZIGGY. how do I rewrite this script please? Thank you @echo off & setlocal for /r /d %%a in (*) do call:strip "%%a" for /r %%a in (*) do call:strip "%%a" goto:eof :strip set app...