1
0
mirror of https://github.com/chylex/Nextcloud-Desktop.git synced 2024-10-19 04:42:46 +02:00
Nextcloud-Desktop/doc/makeman.sh
Andreas Schneider 1119e84d96 Add user guide.
2008-09-03 13:38:45 +02:00

10 lines
230 B
Bash
Executable File

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