mirror of
https://github.com/koreader/koreader
synced 2024-11-06 09:20:32 +00:00
36 lines
590 B
Bash
36 lines
590 B
Bash
|
#!/bin/sh -e
|
||
|
#
|
||
|
# open file in application based on file extension
|
||
|
|
||
|
mime_type=$(file -bi "$1")
|
||
|
|
||
|
case "${mime_type}" in
|
||
|
application/x*)
|
||
|
./"$1"
|
||
|
echo "Application done, hit enter to return"
|
||
|
read -r
|
||
|
exit
|
||
|
;;
|
||
|
|
||
|
text/x-shellscript*)
|
||
|
./"$1"
|
||
|
echo "Shellscript done, hit enter to return"
|
||
|
read -r
|
||
|
exit
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
case "$1" in
|
||
|
*.sh)
|
||
|
sh "$1"
|
||
|
echo "Shellscript done, enter to return."
|
||
|
read -r
|
||
|
exit
|
||
|
;;
|
||
|
|
||
|
# all other files
|
||
|
*)
|
||
|
"${EDITOR:=vi}" "$1"
|
||
|
;;
|
||
|
esac
|