This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/common/bin/b

15 lines
211 B
Plaintext
Raw Normal View History

2019-03-06 12:20:34 -06:00
#!/usr/bin/env bash
bbin="bible" # npm i -g bible
pbin="less"
# bible args
2020-04-20 10:38:19 -05:00
bargs=("")
2019-03-06 12:20:34 -06:00
# pager args
pargs="-R"
2020-04-20 10:38:19 -05:00
[[ $1 = s ]] && { bargs+=("--search"); shift; }
2019-03-06 12:20:34 -06:00
2020-04-20 10:38:19 -05:00
"${bbin}" "${bargs[@]}" "$*" | "${pbin}" $pargs