Quantcast
Viewing all articles
Browse latest Browse all 5

Command to Replace a String in all Files in Current Directory

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]


Viewing all articles
Browse latest Browse all 5

Trending Articles