5 lines
131 B
Bash
Executable file
5 lines
131 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DIR=~/bin/scripts/logseq-migration
|
|
|
|
find "${1:-.}" -wholename "*.md" -exec "$DIR"/pandoc-cmd '{}' \; -exec rm '{}' \;
|