If you pass a value to a long option that does not expect it, it is handled as unknown option:

$ guile --version
guile (GNU Guile) 3.0.9
[..]
$ guile --version=1
error: unrecognized switch --version=1
[..]

Did not expect this.

#gnulibc #GNULinux

I've been obsessed with #C recently. Been reading lots of the #GNULibC manual, and just admiring what a feature
complete library it is (I always thaught you didn't get much of a stdlib with C for some odd reason, but of
course #Posix).

Came across the section on #inetd, so I decided to write my own as a learning experience. Obviously inetd today has
security issues, but it's a good way to learn about sockets, parsing config files, and a bunch of other posix stuff.