/usr/share/zsh/5.3.1/scripts/newuser is in zsh-common 5.3.1-4.
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 6 7 8 | # zsh script sourced at startup when a user is found to have
# no startup files. See the documentation for the zsh/newuser
# module in zshmodules(1).
if functions zsh-newuser-install >/dev/null 2>&1 ||
autoload -U +X zsh-newuser-install; then
zsh-newuser-install
fi
|