All I want to do is. . .

. . .change all .md to .markdown.

OS:
Tags:

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

The Markdown File Extension

for file in *.md; do mv "$file" "${file%.md}.markdown"; done

source

Raw: md-to-markdown.md


If you have suggestions, corrections, or content to contribute, fork us at our Github repo or open an issue.

Licensed under the CC-SA.