Project

General

Profile

1 183 aaronmk
#!/bin/bash
2 131 aaronmk
# Sets a password environment variable
3
4 291 aaronmk
self="$(readlink -f -- "$BASH_SOURCE")"
5
6 1093 aaronmk
set -o pipefail
7
8 1090 aaronmk
store=
9 1144 aaronmk
test "$1" = - && { store=1; shift;}
10 131 aaronmk
11 1090 aaronmk
if ! test "$#" -ge 1; then
12 1144 aaronmk
    echo "Usage: . $self env_var [desc] (note initial \".\")"|fold -s >&2
13 1090 aaronmk
    exit 2
14
fi
15 251 aaronmk
16 1090 aaronmk
desc="$2"
17
test -n "$desc" || desc="the $1 password"
18
19 1144 aaronmk
function trace() { for arg in "$@"; do printf "%q " "$arg"; done; echo;}
20 290 aaronmk
21 1144 aaronmk
function traceSelf() { trace . "$self" - "$@";}
22
23 1090 aaronmk
if test -n "$store" -o -z "${!1+t}"; then # env var with name $1 is unset
24
    if test -n "$store"; then
25 1144 aaronmk
        echo " To change the saved value for $desc, run: " >&2
26
        traceSelf "$@" >&2
27 1090 aaronmk
    else
28 1144 aaronmk
        test -t 2 && ccTty= || ccTty=1 # cc the tty if stderr is a log file
29
        {
30 1091 aaronmk
        echo " You must first store $desc. At the shell, run: "
31 1144 aaronmk
        traceSelf "$@"
32
        }|tee ${ccTty:+/dev/tty} >&2
33 292 aaronmk
    fi
34 293 aaronmk
35 1090 aaronmk
    test -z "$store" && exit 1 # just direct user how to store password
36 1091 aaronmk
    read -s -p "Enter $desc: "; echo
37 131 aaronmk
    export "$1"="$REPLY"
38
fi