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: package.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 trpm) rpm -qivl --scripts `basename "${MC_EXT_BASENAME}" .trpm` ;; src.rpm|rpm) if rpm --nosignature --version >/dev/null 2>&1; then RPM="rpm --nosignature" else RPM="rpm" fi $RPM -qivlp --scripts "${MC_EXT_FILENAME}" ;; deb) dpkg-deb -I "${MC_EXT_FILENAME}" && echo && dpkg-deb -c "${MC_EXT_FILENAME}" ;; debd) dpkg -s `echo "${MC_EXT_BASENAME}" | sed 's/\([0-9a-z.-]*\).*/\1/'` ;; deba) apt-cache show `echo "${MC_EXT_BASENAME}" | sed 's/\([0-9a-z.-]*\).*/\1/'` ;; *) ;; esac } do_open_action() { filetype=$1 case "${filetype}" in *) ;; 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