- Disc-2
- ユーザー投稿型ニュースサイト
- ghost-log
- 伺か関係情報ブログ
- GHOST/BALLOON TOWN
- プレビューつきゴースト・バルーンの情報サイト
- ActiveSonar
- 伺か関係のサイトの更新アンテナ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Markdown形式のファイルパスを取得し配列に格納する | |
mdpath=($(find ./ -name "*.md")) | |
# カウンタ | |
cnt=0 | |
# 配列でループ | |
for mdfile in ${mdpath[@]}; do | |
# 拡張子をhtmlに変換する | |
htfile=$(echo $mdfile | sed -e "s|\.md|.html|") |
NewerOlder