about summary refs log tree commit diff stats
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
parent3668fc4a5732bb72944afe7856b0b70f62976996 (diff)
downloadranger-822092bb7756298270c1a79c99597753fd091e14.tar.gz
data/scope.sh: Make `file` output easily discernible
-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
e>
08a0eed6 ^
14a38052 ^
ac07e589 ^
60338448 ^

ce2c1efc ^
60338448 ^
e0610e39 ^
ac07e589 ^
ac07e589 ^
5a2cb154 ^















ce2c1efc ^
5a2cb154 ^















c8a3ccbe ^
5a2cb154 ^
4a4a392d ^













86351aaf ^
4a4a392d ^



86351aaf ^






















































































5a2cb154 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169