Project

General

Profile

1
#!/bin/bash
2
# Sets a password environment variable
3

    
4
self="$(readlink -f -- "$BASH_SOURCE")"
5

    
6
set -o pipefail
7

    
8
test -t 2 && ccTty= || ccTty=1 # cc the tty if stderr is a log file
9
{
10
store=
11
test _"$1" = _- && { store=1; shift;}
12

    
13
if ! test "$#" -ge 1; then
14
    echo "Usage: . $self env_var [desc] (note initial \".\")"|fold -s
15
    exit 2
16
fi
17

    
18
desc="$2"
19
test -n "$desc" || desc="the $1 password"
20

    
21
function trace()
22
{
23
    { for arg in "$@"; do printf "%q " "$arg"; done; echo;}
24
}
25

    
26
if test -n "$store" -o -z "${!1+t}"; then # env var with name $1 is unset
27
    if test -n "$store"; then
28
        echo " To change the saved value for $desc, run: "
29
    else
30
        echo " You must first store $desc. At the shell, run: "
31
    fi
32
    trace . "$self" - "$@"
33
    
34
    test -z "$store" && exit 1 # just direct user how to store password
35
    read -s -p "Enter $desc: "; echo
36
    export "$1"="$REPLY"
37
fi
38
} 2>&1|tee ${ccTty:+/dev/tty} >&2 || exit
(5-5/25)