OXIESEC PANEL
- Current Dir:
/
/
usr
/
libexec
/
mc
/
ext.d
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/16/2023 12:45:18 PM
rwxr-xr-x
📄
archive.sh
3.64 KB
02/24/2017 08:25:57 PM
rwxr-xr-x
📄
doc.sh
4.93 KB
10/18/2019 08:37:55 PM
rwxr-xr-x
📄
image.sh
1.1 KB
02/24/2017 08:25:57 PM
rwxr-xr-x
📄
misc.sh
2.01 KB
10/18/2019 08:37:55 PM
rwxr-xr-x
📄
package.sh
1.09 KB
02/24/2017 08:25:57 PM
rwxr-xr-x
📄
sound.sh
1.87 KB
02/24/2017 08:25:57 PM
rwxr-xr-x
📄
text.sh
3.24 KB
10/18/2019 08:37:55 PM
rwxr-xr-x
📄
video.sh
973 bytes
02/24/2017 08:25:57 PM
rwxr-xr-x
📄
web.sh
1.05 KB
10/18/2019 08:37:55 PM
rwxr-xr-x
Editing: web.sh
Close
#!/bin/sh # $1 - action # $2 - type of file action=$1 filetype=$2 [ -n "${MC_XDG_OPEN}" ] || MC_XDG_OPEN="xdg-open" do_view_action() { filetype=$1 case "${filetype}" in html) links -dump "${MC_EXT_FILENAME}" 2>/dev/null || \ w3m -dump "${MC_EXT_FILENAME}" 2>/dev/null || \ lynx -dump -force_html "${MC_EXT_FILENAME}" ;; *) ;; esac } do_open_action() { filetype=$1 case "${filetype}" in html) (if [ -n "" -a -n "$DISPLAY" ]; then ( file://"${MC_EXT_CURRENTDIR}"/"${MC_EXT_BASENAME}" &) 1>&2 else elinks "${MC_EXT_FILENAME}" || \ links "${MC_EXT_FILENAME}" || \ lynx -force_html "${MC_EXT_FILENAME}" || \ ${PAGER:-more} "${MC_EXT_FILENAME}" fi) 2>/dev/null ;; *) ;; esac } case "${action}" in view) do_view_action "${filetype}" ;; open) ("${MC_XDG_OPEN}" "${MC_EXT_FILENAME}" >/dev/null 2>&1) || \ do_open_action "${filetype}" ;; *) ;; esac