1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/noalyss_ynh.git synced 2024-09-03 19:46:20 +02:00
noalyss_ynh/sources/dev/compose_list.sh

16 lines
547 B
Bash
Raw Normal View History

2015-09-27 00:35:53 +02:00
#!/bin/bash
#
# This file is a part of NOALYSS under GPL
# Author D. DE BONTRIDDER danydb@aevalys.eu
cat <<EOF
This script create a list of all the function on only page,
you must first run doxygen and call this file from the phpcompta directory
EOF
DOC=doc/developper/html
cat $DOC/globals_func.html > $DOC/list_function.html
find $DOC/globals_func*.html |
xargs awk '/<h3>/,/\/ul/ { print $0; }' >> $DOC/list_function.html
cat $DOC/list_function.html > $DOC/globals_func.html
[ $? -eq 0 ]&&echo "********************** DONE ***************"