i have a bunch of text files with last character in a folder. instead of opening every txt file and manually delete that last character, i was thinking writing a dos batch file to remove it. thanks in advanced.
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
====================================
copy /A YourFile YourFile.new /B > nul
del YourFile
ren YourFile.new YourFile
=====================================
Helping others achieve escape felicity
M2