about summary refs log tree commit diff stats
path: root/profile/bc.sh
blob: f3b0f5e424467646ef97491268ff962cf40d980d (plain)
1
2
3
4
5
6
7
8
9
10
11
# GNU bc

BC_ENV_ARGS="-l -q"

BC_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/bc/init"

if [ -f "$BC_CONFIG" ]; then
	BC_ENV_ARGS="$BC_ENV_ARGS $BC_CONFIG"
fi

export BC_ENV_ARGS