Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.220.227.250
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
bcu /
libgd-gd-2.2.3 /
docs /
naturaldocs /
[ HOME SHELL ]
Name
Size
Permission
Action
project
[ DIR ]
drwxr-xr-x
license.txt
3.04
KB
-rwxr-xr-x
nobgd.pl
1.18
KB
-rwxr-xr-x
preamble.txt
3.23
KB
-rwxr-xr-x
run_docs.sh
1.39
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : run_docs.sh
#!/bin/sh set -e usage() { echo "Usage: run_docs.sh [--nonfatal]" echo "Generate the manual for gd!" if [ $# -ne 0 ] ; then printf 'ERROR: %b\n' "$*" exit 1 else exit 0 fi } nd() { # Figure out the name of this tool. if which naturaldocs 2>/dev/null ; then return elif which NaturalDocs 2>/dev/null ; then return else return 1 fi } cd "$(dirname "$0")" if [ $# -eq 1 ] ; then case $1 in --nonfatal) if ! nd >/dev/null ; then echo "skipping doc generation -- please install naturaldoc!" exit 0 fi ;; -h|--help) usage ;; *) usage "unknown option: $1" ;; esac elif [ $# -ne 0 ] ; then usage "unknown options: $*" fi # Version number VERSION=`(cd ../../; perl config/getver.pl)` # Clear away old docs and ensure the doc dir. is present. rm -rf html mkdir html # Create a lightly-processed copy of the source to use as input. This # file skips all non-C code in src/ and removes the BGD_DECLARE() # macro from definitions so they don't show up in the docs. rm -rf tmp mkdir tmp perl nobgd.pl ../../src/ tmp/ # Add the external docs. cp license.txt tmp/ sed -e "s/@VERSION@/$VERSION/g" preamble.txt > tmp/preamble.txt # ^^^ hack to get the version number in the docs. # Run naturaldocs to create the manual. $(nd) --rebuild --rebuild-output --documented-only \ -i tmp/ \ -o html html \ --project project/ # And cleanup the temp files. rm -rf Data tmp
Close