Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python37 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
alembic
971
B
-rwxr-xr-x
2022-06-27 19:08
chardetect
401
B
-rwxr-xr-x
2021-07-07 18:53
futurize
973
B
-rwxr-xr-x
2022-06-27 19:49
jsonschema
410
B
-rwxr-xr-x
2021-07-08 06:56
lswsgi
103.52
KB
-rwxr-xr-x
2021-02-24 10:29
mako-render
970
B
-rwxr-xr-x
2022-06-27 18:09
normalizer
1013
B
-rwxr-xr-x
2022-05-11 05:46
nosetests-3.7
398
B
-rwxr-xr-x
2021-07-07 19:30
pasteurize
977
B
-rwxr-xr-x
2022-06-27 19:49
pip
661
B
-rwxr-xr-x
2023-11-13 16:26
pip-3
661
B
-rwxr-xr-x
2023-11-13 16:26
pip-3.7
661
B
-rwxr-xr-x
2023-11-13 16:26
pip3
661
B
-rwxr-xr-x
2023-11-13 16:26
pip3.7
661
B
-rwxr-xr-x
2023-11-13 16:26
pydoc3
91
B
-rwxr-xr-x
2024-04-17 13:23
pydoc3.7
91
B
-rwxr-xr-x
2024-04-17 13:23
pyjwt
385
B
-rwxr-xr-x
2021-07-07 19:56
python3
6.98
KB
-rwxr-xr-x
2024-04-17 13:25
python3-config
173
B
-rwxr-xr-x
2024-04-17 13:24
python3.7
6.98
KB
-rwxr-xr-x
2024-04-17 13:25
python3.7-config
173
B
-rwxr-xr-x
2024-04-17 13:24
python3.7m
6.98
KB
-rwxr-xr-x
2024-04-17 13:25
python3.7m-config
173
B
-rwxr-xr-x
2024-04-17 13:24
python3.7m-x86_64-config
3.21
KB
-rwxr-xr-x
2024-04-17 13:21
pyvenv
448
B
-rwxr-xr-x
2024-04-17 13:23
pyvenv-3.7
448
B
-rwxr-xr-x
2024-04-17 13:23
raven
961
B
-rwxr-xr-x
2022-06-27 19:43
virtualenv
992
B
-rwxr-xr-x
2022-05-26 07:30
virtualenv-3
992
B
-rwxr-xr-x
2022-05-26 07:30
virtualenv-37
992
B
-rwxr-xr-x
2022-05-26 07:30
Save
Rename
#!/bin/sh # Keep this script in sync with python-config.in exit_with_usage () { echo "Usage: $0 --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--help|--abiflags|--configdir" exit $1 } if [ "$1" = "" ] ; then exit_with_usage 1 fi # Returns the actual prefix where this script was installed to. installed_prefix () { RESULT=$(dirname $(cd $(dirname "$1") && pwd -P)) if which readlink >/dev/null 2>&1 ; then if readlink -f "$RESULT" >/dev/null 2>&1; then RESULT=$(readlink -f "$RESULT") fi fi echo $RESULT } prefix_real=$(installed_prefix "$0") # Use sed to fix paths from their built-to locations to their installed-to # locations. Keep prefix & exec_prefix using their original values in case # they are referenced in other configure variables, to prevent double # substitution, issue #22140. prefix="/opt/alt/python37" exec_prefix="/opt/alt/python37" exec_prefix_real=${prefix_real} includedir=$(echo "/opt/alt/python37/include" | sed "s#$prefix#$prefix_real#") libdir=$(echo "/opt/alt/python37/lib64" | sed "s#$prefix#$prefix_real#") CFLAGS=$(echo "-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv" | sed "s#$prefix#$prefix_real#") VERSION="3.7" LIBM="-lm" LIBC="" SYSLIBS="$LIBM $LIBC" ABIFLAGS="m" LIBS="-lpython${VERSION}${ABIFLAGS} -lcrypt -lpthread -ldl -lutil $SYSLIBS" BASECFLAGS=" -Wno-unused-result -Wsign-compare" LDLIBRARY="libpython${LDVERSION}.so" OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv" PY_ENABLE_SHARED="1" LDVERSION="${VERSION}${ABIFLAGS}" LIBDEST=${prefix_real}/lib/python${VERSION} LIBPL=$(echo "${prefix}/lib/python3.7/config-${VERSION}${ABIFLAGS}-x86_64-linux-gnu" | sed "s#$prefix#$prefix_real#") SO=".cpython-37m-x86_64-linux-gnu.so" PYTHONFRAMEWORK="" INCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" PLATINCDIR="-I$includedir/python${VERSION}${ABIFLAGS}" # Scan for --help or unknown argument. for ARG in $* do case $ARG in --help) exit_with_usage 0 ;; --prefix|--exec-prefix|--includes|--libs|--cflags|--ldflags|--extension-suffix|--abiflags|--configdir) ;; *) exit_with_usage 1 ;; esac done for ARG in "$@" do case "$ARG" in --prefix) echo "$prefix_real" ;; --exec-prefix) echo "$exec_prefix_real" ;; --includes) echo "$INCDIR $PLATINCDIR" ;; --cflags) echo "$INCDIR $PLATINCDIR $BASECFLAGS $CFLAGS $OPT" ;; --libs) echo "$LIBS" ;; --ldflags) LIBPLUSED= if [ "$PY_ENABLE_SHARED" = "0" ] ; then LIBPLUSED="-L$LIBPL" fi echo "$LIBPLUSED -L$libdir $LIBS" ;; --extension-suffix) echo "$SO" ;; --abiflags) echo "$ABIFLAGS" ;; --configdir) echo "$LIBPL" ;; esac done