projects
/
mmh
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bbd4405
)
print-mimetype: fixed a syntax error
author
markus schnalke
<meillo@marmaro.de>
Wed, 24 Sep 2014 09:32:48 +0000
(11:32 +0200)
committer
markus schnalke
<meillo@marmaro.de>
Wed, 24 Sep 2014 09:32:48 +0000
(11:32 +0200)
uip/print-mimetype.sh
patch
|
blob
|
history
diff --git
a/uip/print-mimetype.sh
b/uip/print-mimetype.sh
index
2149902
..
76dd4ae
100755
(executable)
--- a/
uip/print-mimetype.sh
+++ b/
uip/print-mimetype.sh
@@
-41,9
+41,9
@@
case "$i" in
*.mpg|*.mpeg) video/mpeg;;
*)
if file "$i" | grep -q ' text$' ; then
- type=text/plain;;
+ type=text/plain
else
- type=application/octet-stream;;
+ type=application/octet-stream
fi
esac
echo "$type"