Created
December 31, 2018 02:06
-
-
Save tomo-makes/ab65553276fbc1cfb38290b1b660cfb4 to your computer and use it in GitHub Desktop.
フォルダ内のRe:VIEWファイルを全てmarkdown形式に変換する
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
#! /bin/bash | |
find . -name '*.re' -print0 | while read -r -d '' file; do review-compile --target markdown $file > ${file%%.re}.md; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment