osx - How to add copyrights to my current app in xcode using MAC OS -


i working on app.i have finished app development module ,now working on getting ready delivery client.

i have add client's copyrights .h,.m files inn projects.as there around 700+ files in .also don't want use cntrol+find in entire app , replace copyright content required.

is there other approach can add copyrights content it.i heard of creating sort of batch file , using terminal add copyrights project not sure how implement this.

any appreciated. thanks

hmm, may need little shell scripting. in general, how attempt tackle it:

  1. create text file copyright.
  2. create text file (code) file names need add copyright to. (should pretty easy ls *.m > script).
  3. open script file text editor , modify each line reads: cat copyright 'filename' > should pretty easy macro
  4. set script file's execution bit: chmod a+x script
  5. run script by: ./script

notice produces files '_out' @ end. change fits you.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -