about summary refs log tree commit diff stats
path: root/bash/functions.bash
blob: cce92be1409cbfd5cc78a6b94f6ed579b944c5ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
memq() { # memq ITEM ARRAY
    ## Test whether an ITEM is a member of ARRAY.
    ## Pass ARRAY as ${ARRAY[@]}.
    local e needle="$1"; shift
    for e; do
        [[ "$e" == "$needle" ]] && {
            return 0
        }
    done
    return 1
}

rebashrc() { # rebashrc
    ## Reload ~/.bashrc
    printf "Loading ~/.bashrc..." >&2
    if source "$HOME/.bashrc"; then
        echo "OK." >&2
    else
        echo "ERROR!" >&2
    fi
}

first_which() { # first_which COMMAND...
    ## Return the fully-qualified path of the first COMMAND found in $PATH.
    while :; do
        command -v "$1" && break
        [ -z "$1" ] && return 1
        shift
    done
}