summaryrefslogtreecommitdiffstats
path: root/scripts/libptxdist.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/libptxdist.sh')
-rw-r--r--scripts/libptxdist.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/libptxdist.sh b/scripts/libptxdist.sh
index 121307f58..fe5eb4f1f 100644
--- a/scripts/libptxdist.sh
+++ b/scripts/libptxdist.sh
@@ -462,6 +462,28 @@ ptxd_get_path() {
}
export -f ptxd_get_path
+#
+# ptxd_in_path - look for files and/or dirs
+#
+# $1 variable name with paths separated by ":"
+# $2 filename to find within these paths
+#
+# return:
+# 0 if files/dirs are found
+# 1 if no files/dirs are found
+#
+# array "ptxd_reply" containing the found files/dirs
+#
+ptxd_in_path() {
+ local orig_IFS="${IFS}"
+ IFS=:
+ local -a paths
+ paths=( ${!1} )
+ IFS="${orig_IFS}"
+ paths=( "${paths[@]/%//${2}}" )
+ ptxd_get_path "${paths[@]}"
+}
+export -f ptxd_in_path
#
# convert a relative or absolute path into an absolute path