the-riddle
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

folder_to_md.sh
text/x-sh

Download raw (93 bytes)

#! /bin/bash

Folder=$1

for mdfile in $Folder/*.docx; do
    bash to_md.sh "${mdfile}"
done;