mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
8 lines
461 B
Bash
Executable File
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 {} \;
|