diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-07-21 13:50:46 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-07-21 13:50:46 +0530 |
commit | 847aa0e2ee91253dbcd66537dace25c450287396 (patch) | |
tree | 48b622484cc39f681e2398f638403c1e64b6b24a /plugins/hexview | |
parent | 83bf689058be6bc043b98a6b345c02303dec61e3 (diff) | |
download | nnn-847aa0e2ee91253dbcd66537dace25c450287396.tar.gz |
Fix hex viewer
Diffstat (limited to 'plugins/hexview')
-rwxr-xr-x | plugins/hexview | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/hexview b/plugins/hexview index 5125fa3..3f45583 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 |