mirror of
https://github.com/tedkulp/dotfiles
synced 2026-04-19 22:04:38 -04:00
16 lines
227 B
Bash
16 lines
227 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
|
|
}
|