🌱 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
Renames all .markdown to .txt recursively through the current directory
#!/bin/bash
find . -name "*markdown" | while read line; do mv "$line" ${line%.*}.txt; done