Skip to content

Instantly share code, notes, and snippets.

@tantan-tanuki
tantan-tanuki / jm_install
Created June 10, 2021 08:40
日本語MANページのインストールスクリプト
#!/bin/env bash
# JMプロジェクトURL
JM_URL=https://linuxjm.osdn.jp
# ダウンロードページ情報取得
DOWNLOAD_PAGE="$(curl -s $JM_URL/download.html)"
# 最新アーカイブ名取得
ARCHIVE_NAME="$(xmllint --html --xpath "//a[contains(@href, 'ja-2')]/text()" - < <(echo -e "$DOWNLOAD_PAGE"))"