/usr/lib/cruft/explain/USERS_cruft-ng is in cruft-common 0.9.34.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/dash
set -e
# this is a trimmed down version of USERS script
# only useful for cruft-ng
#
# cruft won't see this file
for user in root `awk -F: '{ if ( 1000 <= $3 && $3 < 30000 ) print $1 }' /etc/passwd`; do
home=`grep "^$user:" /etc/passwd | cut -d: -f6`
[ -d "$home" ] && echo $home
[ -e /var/mail/$user ] && echo /var/mail/$user
[ -e /var/spool/cron/crontabs/$user ] && echo /var/spool/cron/crontabs/$user
done
|