Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.219.115.102
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
etc /
mc /
Delete
Unzip
Name
Size
Permission
Date
Action
edit.indent.rc
788
B
-rwxr-xr-x
2017-02-24 20:25
filehighlight.ini
1.15
KB
-rw-r--r--
2017-02-24 20:25
mc.default.keymap
8.52
KB
-rw-r--r--
2017-02-24 20:25
mc.emacs.keymap
8.46
KB
-rw-r--r--
2017-02-24 20:25
mc.ext
20.54
KB
-rw-r--r--
2019-05-14 02:26
mc.keymap
8.52
KB
-rw-r--r--
2017-02-24 20:25
mc.menu
11.13
KB
-rw-r--r--
2019-05-14 02:26
mcedit.menu
12.33
KB
-rw-r--r--
2019-05-14 02:26
sfs.ini
825
B
-rw-r--r--
2017-02-24 20:25
Save
Rename
#! /bin/sh # *** External Formatter (Indenter) for GNU Midnight Commander. # arguments: # $1 - Name of the file being edited # $2 - Name of the file to be processed exec >/dev/null case `echo $1 |sed 's/^.*\.//'` in c|h) # ftp://ftp.gnu.org/pub/gnu/indent/ # Please add options to your ~/.indent.pro, not here. indent "$2" ;; C|cc|CC|cxx|CXX|cpp|CPP) # http://astyle.sourceforge.net/ astyle "$2" ;; java|JAVA) # http://astyle.sourceforge.net/ astyle --style=java --mode=java "$2" ;; htm|html|HTM|HTML) # http://tidy.sourceforge.net/ tidy -q -m -ascii -wrap 80 "$2" ;; *) # http://www.gnu.org/software/coreutils/ fmt "$2" >"$2.tmp" && rm -f "$2" && mv -f "$2.tmp" "$2" ;; esac