From: Bastian Dehn Date: Tue, 12 May 2020 19:32:24 +0000 (+0200) Subject: fix: flacs remove with find X-Git-Tag: v1.0.0^2~75 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=f458480ae952ada6f88e6d76400e10f74316b4ac;p=albentohandy.git fix: flacs remove with find --- diff --git a/albentohandy b/albentohandy index 2ac2d14..9673dac 100755 --- a/albentohandy +++ b/albentohandy @@ -63,7 +63,7 @@ CleanupFlac() { local readonly workdir="$1" - find $workdir -name '*.flac' | sort | xargs rm + find $workdir -name '*.flac' -exec rm {} \; } CleanupWorkDir()