I am somewhat familiar with redirecting and know that /dev/null can be used for hiding output, for example with
some_command > /dev/null
but I encountered the usage
< /dev/null some_command
in this ArchWiki article and would like to understand what it does.
My first guess is that it is equivalent to
some_command < /dev/null
but if this guess is correct, what is the benefit of redirecting /dev/null to a command?