/usr/share/tools/trim26lst is in discover-data 2.2013.01.11.
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 | #! /usr/bin/awk -f
# $Progeny$
BEGIN {
FS = "\t";
}
/^[^\t]/ {
print $0;
}
/^\t/ && $3 !~ /(video)/ && $4 !~ /(unknown|ignore)/ {
print $0;
}
|