Command to Replace a String in all Files in Current Directory

Tagged with: , , , ,

Replaces all instance of ‘<old string>’ with ‘<new sting>’ in all the files of the current directory.

perl -pi -e "s/<old string>/<new string>/g;" *

[tags]perl,command,rename,replace,string[/tags]

Leave a Reply