The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

# $Id$

use strict;
use warnings;
use File::Find::Object;
use Getopt::Long;

my %options;

GetOptions(
    'd' => \$options{depth},
    'n' => \$options{nonet},
    'f' => \$options{nocrossfs},
    'l' => \$options{followlink},
);

my $tree = File::Find::Object->new({ %options }, @ARGV);

while (my $r = $tree->next()) {
    print $r ."\n";
}