From: Steven Baltakatei Sandoval Date: Sun, 24 Jul 2022 08:18:33 +0000 (+0000) Subject: fix(user/bk-naut-hide):Disable find -L option to avoid loop X-Git-Tag: 0.5.1~12 X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/commitdiff_plain/9f85673caf1e699d66eabcb48eddd14062cbb01b?hp=e2912511058c16ba658f02e34278c3c352d5b1ed fix(user/bk-naut-hide):Disable find -L option to avoid loop --- diff --git a/user/bk-naut-hide b/user/bk-naut-hide index e623dcc..7f24496 100755 --- a/user/bk-naut-hide +++ b/user/bk-naut-hide @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Desc: Scan file system and update '.hidden' files to hide certain # files based on filenames. -# Version: 0.0.2 +# Version: 0.0.3 # Usage: bk-naut-hide [DIRS...] yell() { echo "$0: $*" >&2; } # print script path and all args to stderr @@ -173,7 +173,7 @@ get_paths_dothide() { if [[ ! -d "$1" ]]; then die "FATAL:Not a dir:$1"; fi; # Search for files named '.hidden' - find -L "$1" -type f -name ".hidden" 2>/dev/null + find "$1" -type f -name ".hidden" 2>/dev/null }; # Return list of paths of '.hidden' files main() {