diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-02-09 22:43:55 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-02-09 22:43:55 -0500 |
commit | a042731ad4eb5fdad5d1748b462d22dd0049e469 (patch) | |
tree | 1c05b27e079bdd4e843f21a3f8d6517f83a3e749 /.local/bin | |
parent | 1952da6ff2a26c6e0a9b47e8ed0b453ea7981336 (diff) | |
parent | ca3e04971996ebe2eebf88775e96bbf547aa0abe (diff) |
Merge branch 'master' into gluglugt60-par/master
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/config-path | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/.local/bin/config-path b/.local/bin/config-path index 7cd1fcd..1d4d4d1 100755 --- a/.local/bin/config-path +++ b/.local/bin/config-path @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # All the prefixes to consider prefixes=( @@ -61,14 +61,12 @@ main() { done # Finally, print the values - # The `sed` bit here is the only time we call an external program - { - var_done PATH - var_done MANPATH - var_done LD_LIBRARY_PATH - var_done RUBYLIB - var_done PERL5LIB - } | sed 's/^declare \(-\S* \)*//' + lines=() + for var in PATH MANPATH LD_LIBRARY_PATH RUBYLIB PERL5LIB; do + lines+=("$(var_done "$var")") + done + shopt -s extglob + printf -- '%s\n' "${lines[@]##declare *(-+([[:graph:]]) )}" } main "$@" |