stty does not implement "Special Control Character Assignments": ``` eof eol erase intr kill quit susp start stop ``` See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/stty.html#tag_20_123_05_05 For example: ```Shell ❯ /usr/bin/stty intr '' ; coreutils printf '%s\n' "${?:?}" 0 # Control-C is now unbound (does not send SIGINT) ❯ coreutils stty intr '' ; coreutils printf '%s\n' "${?:?}" stty: invalid argument 'intr' 1 # Control-C is still bound ```