Reputation: 12954
The title says it all. I have an Xcode project. I have a pile of Objective-C code. I need to replace/add the copywrite for all the files. Is there an automated way to do this?
Upvotes: 0
Views: 33
Reputation: 39268
You can write a simple application that targets the existing text in all the files and replaces it with the updated version. Depending on the format of the text you could potentially use regex
Upvotes: 1