I am trying to find the whole source code for occurrences of, say, "MY_NAME" and want to replace it with, say, "YOUR_NAME". I already know the files and the line numbers where they occur and i want to make a patch for the same so that anyone running the patch can do the same. Can anyone please help?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can do it by console. Just use find to locate destination files, and then you can declare what you want to replace with what sentence. In example:
|
|||||||
|
|
It might be easier to do a sed command, and then generate a patch.
This will replace MY_NAME with YOUR_NAME on lines 12 and 32, and save the output into file2. You can also generate a sed script if there are many changes:
Then, for applying to many files, you should use
Hope this helps =) |
|||||||||||||
|
|
Use the command diff to create a patch-file that can then be distributed and applied with the patch-command.
|
|||
|
|