List all .c files in tree
[eleutheria.git] / list.sh
blobbcb6c028a9a612f9b57233076d7192a81c59e531
1 #!/bin/sh
2 for i in `find . -name *.c`
3 do
4 echo `basename $i | sort`
5 done