aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/bc.sh
blob: 591b4359f317443353e00861156ffceda0bfe6ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Our ~/.profile should already have made a directory with the supported
# options for us; if not, we won't be wrapping bc(1) with a function at all
[ -d "$HOME"/.cache/sh/opt/bc ] || return

# Define function proper
bc() {

    # Add --quiet to stop the annoying welcome banner
    if [ -e "$HOME"/.cache/sh/opt/bc/quiet ] ; then
        set -- --quiet "$@"
    fi

    # Run bc(1) with the concluded arguments
    command bc "$@"
}