I just discovered that on my system (Fedora 35), all of Bash's builtin commands also exist as scripts in /usr/bin. For instance:
$ which cd
/usr/bin/cd
$ cat $(which cd)
#!/usr/bin/sh
builtin cd "$@"
With the same thing applying to read, bg, etc for all Bash builtins.
What is this builtin command, and what is the point of creating scripts for all builtin commands like this?