2016-01-26 20:14:33 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2016-02-15 19:46:51 -06:00
|
|
|
SEARCH_DIRS=$@
|
2016-01-26 20:14:33 -06:00
|
|
|
|
2019-07-17 10:28:54 +03:00
|
|
|
find $SEARCH_DIRS -name '*.cu'
|
|
|
|
|
find $SEARCH_DIRS -name '*.cpp' -o -name '*.cxx' -o -name '*.c' -o -name '*.cc'
|
|
|
|
|
find $SEARCH_DIRS -name '*.cuh'
|
|
|
|
|
find $SEARCH_DIRS -name '*.h' -o -name '*.hpp' -o -name '*.inc' -o -name '*.inl' -o -name '*.hxx' -o -name '*.hdl'
|