Skip to content

Instantly share code, notes, and snippets.

@kitzberger
Last active December 27, 2022 10:14
Show Gist options
  • Select an option

  • Save kitzberger/21a2719b9ab1be258f2e62dd361823d8 to your computer and use it in GitHub Desktop.

Select an option

Save kitzberger/21a2719b9ab1be258f2e62dd361823d8 to your computer and use it in GitHub Desktop.
Rename multiple files via mmv
# Simple change of file extension
mmv "*.ctp" "#1.php"
# Recursively renaming all `.ts` files to `.typoscript`
# ; matching subdirectories
# * matching the filename
mmv ";*.ts" "#1#2.typoscript"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment