/usr/lib/wims/other/bin/findnoexec is in wims 1:4.08~dfsg1-1.
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 | #!/usr/bin/perl
use File::Find;
my ($mdir) = @ARGV;
my (@FILES) = ();
sub wanted {
if (-f && ! -x) { push(@FILES, $File::Find::name); }
}
find(\&wanted, $mdir);
for (sort @FILES) { s!^$mdir/!!; print "$_\n"; }
|