mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
7 lines
461 B
Bash
Executable file
7 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 {} \;
|