All I want to do is. . .
. . .change all .md to .markdown.
Description: Rename file extensions for all files in a given directory.
Contributors:
anschwa
Updated: 11/01/15
We no longer live in a 8.3 world, so we should be using the most descriptive file extensions. It’s sad that all our operating systems rely on this stupid convention instead of the better creator code or a metadata model, but great that they now support longer file extensions.
- Hilton Lipschitz
for file in *.md; do mv "$file" "${file%.md}.markdown"; done