Files
rocm-systems/bin/findcode.sh
T

9 řádky
287 B
Bash
Surový Normální zobrazení Historie

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
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'