Public
Authored by nagayama15

PukiWiki → dokuwiki の変換スクリプト

  1. (URL)/index.php?cmd=dump から ディレクトリ階層付き でファイルをダウンロードする
  2. $ unar -e euc-jp tar*.tar.gz
  3. 下の convert.sed を保存する
  4. 以下のzshスクリプトを実行する
IFS=$'\n'
for i in `find wiki -type f`
do
    file="`echo -n "$i" | nkf -w --url-input`"
    echo "$file"
    mkdir -p `dirname "export/$file"`
    iconv -f euc-jp "$i" | sed -f convert.sed > "export/$file"
done
convert.sed 527 Bytes
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment