Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tomo-makes
Created December 31, 2018 02:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomo-makes/ab65553276fbc1cfb38290b1b660cfb4 to your computer and use it in GitHub Desktop.
Save tomo-makes/ab65553276fbc1cfb38290b1b660cfb4 to your computer and use it in GitHub Desktop.
フォルダ内のRe:VIEWファイルを全てmarkdown形式に変換する
#! /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