/usr/lib/cruft/explain/sudo 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 | #!/bin/dash
set -e
. /usr/lib/cruft/common.sh
for user in root `awk -F: '{ if ( 1000 <= $3 && $3 < 30000 ) print $1 }' /etc/passwd`; do
home=`grep "^$user:" /etc/passwd | cut -d: -f6`
[ -e /var/lib/sudo/$user ] && find /var/lib/sudo/$user
[ -e /var/lib/sudo/lectured/$user ] && echo /var/lib/sudo/lectured/$user
[ -e /var/lib/sudo/ts/$user ] && echo /var/lib/sudo/ts/$user
done
|