aboutsummaryrefslogblamecommitdiff
path: root/sh/shrc.d/bc.sh
blob: aee88e09eceff3cedec97bb5a823f76d758f1782 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                           
                                         
 
                        
      

                                                     
                                            



                                            
 
# 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
    [ -e "$HOME"/.cache/sh/opt/bc/quiet ] &&
        set -- --quiet "$@"

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