DEV Community

Discussion on: How to rename all md files to mdx

Collapse
 
moopet profile image
Ben Sinclair

On Linux, you have the rename command for this:

rename .md  .mdx *.md
Enter fullscreen mode Exit fullscreen mode

You can probably get it on MacOS with a bit of homebrew hackery, but it's not the "rename" package on there as I just figured out.