Skip to content

Instantly share code, notes, and snippets.

@lysandroc
Last active September 19, 2021 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lysandroc/afb0219ecfc12e0634a1ce7722ed3a6a to your computer and use it in GitHub Desktop.
Save lysandroc/afb0219ecfc12e0634a1ce7722ed3a6a to your computer and use it in GitHub Desktop.
script to fix patterns name in the onedrive sync app
//remove - or _
zmv '(**/)(*)' '$1${2//[^A-Za-z0-9.]}'
//substitute - and _ for blank space
zmv '(**/)(*)' '${1${2//[^A-Za-z0-9.]}//_/ }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment