6-public now excludes fc* addresses,

cloudflare will use grepcidr if available to ensure public ip,
git *-all scripts now sort their output,
and a few other minor tweaks.
This commit is contained in:
2024-05-30 13:20:43 -04:00
parent aee3350271
commit 54b6c8479b
8 changed files with 46 additions and 6 deletions
+1 -1
View File
@@ -48,5 +48,5 @@ function process_git_pull () {
# and call process_git_pull on each location that was found.
# we then work on the folder that contained the ".git" folder.
find "$followLinks" "$@" -type d -name ".git" $checkHidden | while read -r file; do process_git_pull "$file"; done
find "$followLinks" "$@" -type d -name ".git" $checkHidden | sort | while read -r file; do process_git_pull "$file"; done