fix(user/bk-naut-hide):Disable find -L option to avoid loop
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sun, 24 Jul 2022 08:18:33 +0000 (08:18 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sun, 24 Jul 2022 08:18:33 +0000 (08:18 +0000)
user/bk-naut-hide

index e623dcc182a066760e3967b19c8b8000714bda3c..7f244964fb2c5cf82f46b091ca6542fc8ab2470c 100755 (executable)
@@ -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() {