aboutsummaryrefslogtreecommitdiff
path: root/bin/pit
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-03 09:14:47 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-03 09:14:47 +1200
commit4519a1922fb6482920b7f995f4dde90d5e71f49e (patch)
tree47a82cf0c6753307fed02cfe4dd277a667a94aa5 /bin/pit
parentAdd missing mkmv(1) manual (diff)
downloaddotfiles-4519a1922fb6482920b7f995f4dde90d5e71f49e.tar.gz
dotfiles-4519a1922fb6482920b7f995f4dde90d5e71f49e.zip
Trim some trailing whitespace
Diffstat (limited to 'bin/pit')
-rwxr-xr-xbin/pit4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pit b/bin/pit
index d7ebd4c5..d3068e76 100755
--- a/bin/pit
+++ b/bin/pit
@@ -7,11 +7,11 @@ fi
# If output seems to be to a terminal, try to run input through a pager of some
# sort; we'll fall back on more(1) to be POSIX-ish
-if [ -t 1 ] ; then
+if [ -t 1 ] ; then
"${PAGER:-more}" -- "$@"
# Otherwise, just run it through with cat(1); a good pager does this anyway,
# provided it actually exists
-else
+else
cat -- "$@"
fi