31dom/scripts/export_to_txt.sh

6 lines
128 B
Bash
Raw Normal View History

2023-08-04 17:00:18 +00:00
#!/bin/bash
cd export
ls * | grep -v Book.txt | xargs rm
cd ..
for old in *.md; do cp $old export/`basename $old .md`.txt; done