Search results

  1. D

    Text editing trivia

    Perl is your friend! copy this into your favorite text editor, chmod it to 755, give it a directory, and it'll do it for every file in that directory! ------- #!/usr/bin/perl -w use File::Find; use File::Basename; find(\&addDocName, $ARGV[0]); sub addDocName{ if (/\.csv$/) {...
  2. D

    API for updating bundle params?

    I'm trying to find if there's a way to update bundle parameters programatically. I've used the CFBundle interface for reading information about a bundle, but I can't find a way to write this information back to the bundle. Does anybody know of a way to do so? Something like a...
Back
Top