audacia/scripts/mw2html_audacity/wiki2htm.sh

11 lines
262 B
Bash
Raw Permalink Normal View History

#!/bin/sh
helpdir="../../help/manual"
tmpdir_="../../help/temp"
srcuri="https://alphamanual.audacityteam.org/man"
mkdir -p "${tmpdir_}"
2020-05-27 17:49:52 +00:00
python3 mw2html.py "${srcuri}" "${tmpdir_}" -s
2016-04-23 22:51:19 +00:00
mv "${tmpdir_}/alphamanual.audacityteam.org" "${helpdir}"
rm -r "${tmpdir_}"