🌱 Recursive File Renaming

Renames all .markdown to .txt recursively through the current directory

#!/bin/bash
find . -name "*markdown" | while read line; do mv "$line" ${line%.*}.txt; done
Made by Brandon . If you find this project useful you can donate.