nextcloud-desktop/doc/makeman.sh

10 lines
230 B
Bash
Raw Normal View History

2008-07-03 13:10:12 +04:00
#!/bin/bash
# Last Change: 2008-07-03 11:08:54
for f in $@; do
test "${f##*/}" = "CMakeLists.txt" && continue
2008-09-03 15:38:45 +04:00
echo -e "\e[32mCreating manpage ${f%.*}\e[0m"
2008-07-03 13:10:12 +04:00
a2x --doctype=manpage --format=manpage $f
2008-09-03 15:38:45 +04:00
rm -f ${f%.*}.xml
2008-07-03 13:10:12 +04:00
done