android13/external/google-fruit/extras/doc/generate_snippets.sh

10 lines
148 B
Bash
Executable File

#!/bin/bash
for f in *.cpp *.h
do
echo "// $f"
cat "$f"
echo
echo
done | grep -v '^/\*' | grep -v '^ \*' | grep -v '^ \*/' | grep -v '_H$'