forked from Archive/PX4-Autopilot
22 lines
628 B
Bash
Executable File
22 lines
628 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
PATTERN="-e ."
|
|
|
|
if [ $# -gt 0 ]
|
|
then
|
|
PATTERN="$1"
|
|
fi
|
|
|
|
exec find src platforms \
|
|
-path platforms/nuttx/NuttX -prune -o \
|
|
-path platforms/nuttx/nuttx-configs -prune -o \
|
|
-path src/lib/DriverFramework -prune -o \
|
|
-path src/lib/ecl -prune -o \
|
|
-path src/lib/matrix -prune -o \
|
|
-path src/modules/commander -prune -o \
|
|
-path src/modules/micrortps_bridge/micro-CDR -prune -o \
|
|
-path src/modules/systemlib/uthash -prune -o \
|
|
-path src/modules/uavcan/libuavcan -prune -o \
|
|
-type f \( -name "*.c" -o -name "*.h" -o -name "*.cpp" -o -name "*.hpp" \) | grep $PATTERN
|