replaced find --not with ! for portability

This commit is contained in:
James Tomasino 2018-04-09 21:19:38 -04:00
parent 00707c3046
commit 4abc2496aa
1 changed files with 1 additions and 1 deletions

2
burrow
View File

@ -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}")