/usr/share/zsh/functions/Misc/run-help-openssl is in zsh-common 5.4.2-3ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 | if [ $# -eq 0 ]; then
man openssl
else
man $1
fi
|