From 08dc613fbb83cefbfa635f903fb261da4e354c28 Mon Sep 17 00:00:00 2001 From: Ward Wouts Date: Thu, 13 Aug 2015 13:24:46 +0000 Subject: [PATCH] fix bug where -a would not print all files --- list_same/list_same | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list_same/list_same b/list_same/list_same index 78a2774..23c8394 100755 --- a/list_same/list_same +++ b/list_same/list_same @@ -27,7 +27,7 @@ push @filelist, @files; if ( $opts{m} ) { &mp3_comp(@filelist); } else { - if ( $opts{f} ) { + if ( $opts{f} or $opts{a} ) { &get_md5s(@filelist); } else { my %sizes = &get_sizes(@filelist);