From 847aa0e2ee91253dbcd66537dace25c450287396 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 21 Jul 2019 13:50:46 +0530 Subject: [PATCH] Fix hex viewer --- plugins/hexview | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/hexview b/plugins/hexview index 5125fa30..3f45583b 100755 --- a/plugins/hexview +++ b/plugins/hexview @@ -7,5 +7,5 @@ # Author: Arun Prakash Jana if ! [ -z "$1" ]; then - xxd "$1" | "$PAGER" + xxd "$1" | $PAGER fi