This file is indexed.

/usr/lib/cruft/explain/LOST_FOUND 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
16
17
18
#!/bin/dash

set -e
. /usr/lib/cruft/common.sh
cruft_debug

mount | egrep ".* on .* type ext[234]" | awk '{ print $3"/lost+found" }' | sed 's://*:/:g' |
while read dir; do
	ignores="$(get_ignores)"
	if [ -z "$ignores" ]; then
		echo $dir
	else
		[ -z "$(for ignore in $ignores
		do
			is_subdir "$ignore" "$dir" && echo matched
		done)" ] && echo "$dir"
	fi
done