From 3a9f556f39e03f6a8d5142140fe60e40ed39f5c0 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 18 Nov 2013 13:13:49 +0100 Subject: [PATCH] lessfilter: Minor cleanup. --- lessfilter | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lessfilter b/lessfilter index 92d62c4..404cbe0 100755 --- a/lessfilter +++ b/lessfilter @@ -19,13 +19,13 @@ case "$1" in # Color diff files. *.diff | *.patch) - < "$1" colordiff + colordiff <"$1" ;; *) # Display directory contents. if test -d "$1"; then printf '=> Contents of %s:\n' "$1" - ls "$1" + ls -- "$1" exit 0 fi -- 2.44.1