You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koreader/plugins/terminal.koplugin/shfm_opener.sh

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