Skip to main content

mr series edit-name

Update only the name of an existing series. Shorthand for mr series edit <id> --name <value> when the name is the only change. Takes two positional arguments: the series ID and the new name. The slug is derived from the original name at creation time and is not changed by this command.

Usage

mr series edit-name <id> <new-name>

Positional arguments:

  • <id>
  • <new-name>

Examples

Rename series 42

mr series edit-name 42 "volume-1-final"

Rename and confirm with a follow-up get

mr series edit-name 42 "renamed" && mr series get 42 --json | jq -r .Name

Flags

This command has no local flags.

Inherited global flags

FlagTypeDefaultDescription
--jsonboolfalseOutput raw JSON
--no-headerboolfalseOmit table headers
--pageint1Page number for list commands (default page size: 50)
--quietboolfalseOnly output IDs
--serverstringhttp://localhost:8181mahresources server URL (env: MAHRESOURCES_URL)

Exit Codes

0 on success; 1 on any error

See Also