From b13bb64c3b0fb938e7807ab999cbb79906a8c2a4 Mon Sep 17 00:00:00 2001 From: hexcoder Date: Tue, 28 Jan 2020 23:15:06 +0100 Subject: replace -maxdepth with posix -prune (portability) --- afl-cmin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afl-cmin b/afl-cmin index e9d713aa..9179628e 100755 --- a/afl-cmin +++ b/afl-cmin @@ -330,7 +330,7 @@ BEGIN { } else { stat_format = "-f '%z %N'" # *BSD, MacOS } - cmdline = "cd "in_dir" && find . -maxdepth 1 -type f -exec stat "stat_format" \\{\\} \\; | sort -n | cut -d' ' -f2-" + cmdline = "cd "in_dir" && find . \\( ! -name . -a -type d -prune \\) -o -type f -exec stat "stat_format" \\{\\} \\; | sort -n | cut -d' ' -f2-" while (cmdline | getline) { infilesSmallToBig[i++] = $0 } -- cgit 1.4.1