Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
#!/bin/sh
#
# This script looks to see if a directory contains .h files
#
for dir in $@; do
	for hfile in $dir/*.h; do
		if [ -f $hfile ]; then echo $dir; fi
		break
	done
done
exit 0