I want to replace a string with another string in all the files in windows. All files with same extension. I tried with following perl one liner command but it seems "*" is not working for windows.
perl.exe -pi.bak -e "s/Hello/ABCD/ge" C:\Users\Jamimb\Desktop\Test\*.tmp
So please help.