Skip to content

Instantly share code, notes, and snippets.

@ydp
Forked from iamucil/go mod rename module.sh
Created June 20, 2023 23:36
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 ydp/8bc804f724465bd1e5692457d5875002 to your computer and use it in GitHub Desktop.
Save ydp/8bc804f724465bd1e5692457d5875002 to your computer and use it in GitHub Desktop.
go mod edit -module {NEW_MODULE_NAME}
-- rename all imported module
find . -type f -name '*.go' \
-exec sed -i -e 's,{OLD_MODULE},{NEW_MODULE},g' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment