From 4abc2496aa445a69170812eff33d31a831762f9d Mon Sep 17 00:00:00 2001 From: James Tomasino Date: Mon, 9 Apr 2018 21:19:38 -0400 Subject: [PATCH] replaced find --not with ! for portability --- burrow | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/burrow b/burrow index 22ff496..68c9727 100755 --- a/burrow +++ b/burrow @@ -422,7 +422,7 @@ function make_rss { search_list=$(find "${config_dir_gopher}${config_dir_phlog}" \ -mindepth 1 \ -type f \ - -not -samefile "${config_dir_gopher}${config_dir_phlog}/gophermap" \ + '!' -samefile "${config_dir_gopher}${config_dir_phlog}/gophermap" \ -print | \ sort -r | \ head -n "${config_rss_num_entries}")