summary refs log tree commit diff stats
path: root/ranger/data
diff options
context:
space:
mode:
authornfnty <git@nfnty.se>2017-01-25 11:15:26 +0100
committernfnty <git@nfnty.se>2017-01-25 11:16:01 +0100
commit822092bb7756298270c1a79c99597753fd091e14 (patch)
treedcc7a697832ea1e3e68a640518240971ceddcbb6 /ranger/data
parent3668fc4a5732bb72944afe7856b0b70f62976996 (diff)
downloadranger-822092bb7756298270c1a79c99597753fd091e14.tar.gz
data/scope.sh: Make `file` output easily discernible
Diffstat (limited to 'ranger/data')
-rwxr-xr-xranger/data/scope.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/data/scope.sh b/ranger/data/scope.sh
index 9997172a..5144649a 100755
--- a/ranger/data/scope.sh
+++ b/ranger/data/scope.sh
@@ -118,6 +118,6 @@ case "$mimetype" in
         try mediainfo "$path" && { dump | trim | sed 's/  \+:/: /;';  exit 5; } || exit 1;;
 esac
 
-file -Lb "$path" && exit 5 || exit 1
+echo '----- File Type Classification -----' && file -Lb "${path}" && exit 5 || exit 1
 
 exit 1