mirror of
https://github.com/tedkulp/dotfiles
synced 2026-04-18 21:54:46 -04:00
16 lines
242 B
Bash
16 lines
242 B
Bash
function p () {
|
|
local pager="$PAGER"
|
|
|
|
if [ -n "$pager" ]; then
|
|
if command -v "$pager" &>/dev/null; then
|
|
$PAGER "$@"
|
|
fi
|
|
else
|
|
if command -v less &>/dev/null; then
|
|
less -R "$@"
|
|
else
|
|
cat "$@"
|
|
fi
|
|
fi
|
|
}
|