diff options
author | Daniel Friesel <derf@finalrewind.org> | 2017-03-24 17:28:21 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2017-03-24 17:28:21 +0100 |
commit | 3a7baab7344d933e9534716ddd9ff88645dcecfa (patch) | |
tree | de5c461b25307ad3464324d242e70815f5f20131 /bin | |
parent | a1a881bde53bc5eddcd7be4c52a9ce8053ca9c53 (diff) |
begin work on recursive mode. isn't recursive yet, but does list directories.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dthumb | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -27,6 +27,7 @@ GetOptions( no-names|n quality|q=i recreate|r + recursive|R size|d=i spacing|s=f title|t=s @@ -46,16 +47,16 @@ if ( $opt->{help} ) { die("Please see 'perldoc -F $0' or 'man dthumb'\n"); } -$dthumb->read_directories(); -$dthumb->create_files(); -$dthumb->delete_old_thumbnails(); +$dthumb->read_directories; +$dthumb->create_files; +$dthumb->delete_old_thumbnails; $timer->attr( min => 1, - max => scalar $dthumb->get_files(), + max => scalar $dthumb->get_files, ); -for my $file ( $dthumb->get_files() ) { +for my $file ( $dthumb->get_files ) { print STDERR $timer->report( "\r\e[KCreating Thumbnails: %p done, %L elapsed, %E remaining", $id++, ); @@ -65,7 +66,7 @@ for my $file ( $dthumb->get_files() ) { } print "\n"; -$dthumb->write_out_html(); +$dthumb->write_out_html; __END__ |