nice mode to find how a script is defined
authorFred T. Hamster <fred@gruntose.com>
Tue, 14 Jan 2025 15:04:59 +0000 (10:04 -0500)
committerFred T. Hamster <fred@gruntose.com>
Tue, 14 Jan 2025 15:04:59 +0000 (10:04 -0500)
scripts/core/functions.sh

index b1c7c9031fe2cbffbee6ad77ff2851543cf38800..85a8fac8bcea56ef95ab4b4c1aa03734b615416b 100644 (file)
@@ -134,6 +134,24 @@ if [ -z "$skip_all" ]; then
   
   ##############
 
+  # attempts to find a script by the name passed in, as either a function or an alias.
+  # if the alias points directly at a script file, then that will be printed to stdout.
+  function locate_script()
+  {
+    local script_name="$1"; shift
+    maybe_found="$(type "$script_name" | sed -n -r -e "s/^.*is aliased to .[^ ]+ (.*).$/\1/p")"
+    if [ -z "$maybe_found" ]; then
+      maybe_found="$(alias "$script_name" | sed -n -r -e "s/^.*is aliased to .[^ ]+ (.*).$/\1/p")"
+      if [ -z "$maybe_found" ]; then
+        # last ditch effort is to just show what "type" outputs.
+        maybe_found="$(type "$script_name")"
+      fi
+    fi
+    echo "$maybe_found"
+  }
+
+  ##############
+
   function fm_username()
   {
     # see if we can get the user name from the login name.  oddly this sometimes doesn't work.