#!/usr/bin/perl -- use strict; use warnings; use Path::Tiny qw/ path cwd /; use autodie qw/ chdir /; my $cwd = cwd(); my $dirs = path( 'antarctica' )->iterator( { recurse => 0, follow_symlinks => 0, } ); while( defined( my $path = $dirs->() ) ){ Voltronize( $path ) if $path->is_dir; } chdir $cwd;