Index: docs/py_filter |
diff --git a/docs/py_filter b/docs/py_filter |
new file mode 100755 |
index 0000000000000000000000000000000000000000..69e2d3ef49a36145a5fb5320e67dd58f268a080f |
--- /dev/null |
+++ b/docs/py_filter |
@@ -0,0 +1,9 @@ |
+#!/bin/bash |
+x=`which doxypypy` |
+if [ "$x" == "" ]; then |
+ ./fdoxypypy.py $1 |
Jim Stichnoth
2016/01/27 02:12:30
Can you just do 'cat $1' instead of a special scri
rkotlerimgtec
2016/01/27 02:36:07
Done.
|
+else |
+ doxypypy -a -c $1 |
+fi |
+ |
Jim Stichnoth
2016/01/27 02:12:30
Remove trailing newlines
rkotlerimgtec
2016/01/27 02:36:07
Done.
|
+ |