mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 14:05:58 +03:00
9 lines
230 B
Bash
Executable file
9 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
|