jellyfin-plugin-template
jellyfin-plugin-template copied to clipboard
README.md: Fix sh UUID generator and make call to head POSIX-compliant
In awk, substr starts its indexing at 1, so the fourth word of the UUIDs generated before would never start with "b" and would start with "8" twice as often as any other character.
Also, even though I can't find an implementation of head that errors with -1
, -n1
is the POSIX-compliant way and it's a harmless change in any case.