aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/bc.sh
blob: 41331ff9344a353de37d3c601822baad60524e66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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/bc ] || return

# Define function proper
bc() {

    # Add --quiet to stop the annoying welcome banner
    [ -e "$HOME"/.cache/bc/quiet ] &&
        set -- --quiet "$@"

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