Skip to content

Developer Information

Jared Hoberock edited this page Dec 3, 2013 · 3 revisions

To recursively find & replace instances of #include <bulk with some other root in the Bulk headers, run this Perl script inside the bulk/. directory:

perl -e "s|#include <bulk|#include <root/bulk|g;" -pi $(find . -type f)

To recursively find & replace instances of Copyright 2008-2012 NVIDIA Corporation with some other interval in the Bulk headers, run this Perl script inside the bulk/. directory:

perl -e "s|Copyright 2008-2012 NVIDIA Corporation|Copyright 2008-XXXX NVIDIA Corporation|g;" -pi $(find . -type f)

Clone this wiki locally