/// Database administration tool for non-admin users to manage their own MySQL databases and users.
/// If no arguments are provided, the user will be prompted to edit the privileges using a text editor.
/// You can configure your preferred text editor by setting the `VISUAL` or `EDITOR` environment variables.
/// The `<[+-]PRIVILEGES>` argument is a string of characters, each representing a single privilege.
/// The optional leading character can be either `+` to grant additional privileges or `-` to revoke privileges.
/// If omitted, the privileges will be set exactly as specified, removing any privileges not listed, and adding any that are.
override_usage = "muscl edit-privs [OPTIONS] [ -p <DB_NAME:USER_NAME:[+-]PRIVILEGES>... | <DB_NAME> <USER_NAME> <[+-]PRIVILEGES> ]",