Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
mc /
Delete
Unzip
Name
Size
Permission
Date
Action
edit.indent.rc
788
B
-rwxr-xr-x
2023-02-14 12:56
filehighlight.ini
1.38
KB
-rw-r--r--
2023-02-14 12:56
mc.default.keymap
9.23
KB
-rw-r--r--
2023-02-14 12:56
mc.emacs.keymap
9.17
KB
-rw-r--r--
2023-02-14 12:56
mc.ext.ini
25.44
KB
-rw-r--r--
2023-02-14 12:56
mc.keymap
9.23
KB
-rw-r--r--
2023-02-14 12:56
mc.menu
11.54
KB
-rw-r--r--
2023-02-14 12:56
mcedit.menu
12.33
KB
-rw-r--r--
2023-02-14 12:56
sfs.ini
871
B
-rw-r--r--
2023-02-14 12:56
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