Files
pytorch/scripts/temp.sh
Orion Reblitz-Richardson 2017c9caef Add script for removing Apache header.
* Can be used to remove the license header added with add_apache_header.sh
2018-03-27 13:10:18 -07:00

8 lines
461 B
Bash
Executable File

find ../caffe2 -name "*.py" -exec ./remove_apache_header.sh {} \;
find ../caffe2 -name "*.h" -exec ./remove_apache_header.sh {} \;
find ../caffe2 -name "*.cc" -exec ./remove_apache_header.sh {} \;
find ../caffe2 -name "*.cpp" -exec ./remove_apache_header.sh {} \;
find ../caffe2 -name "*.cu" -exec ./remove_apache_header.sh {} \;
find ../caffe2 -name "*.mm" -exec ./remove_apache_header.sh {} \;
find ../caffe2 -name "*.m" -exec ./remove_apache_header.sh {} \;