⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 preflight.sh

📁 这是linux下运行的mysql软件包,可用于linux 下安装 php + mysql + apach 的网络配置
💻 SH
字号:
#!/bin/sh## preflight - this script will be executed before the MySQL PKG# installation will be performed.## If this package has been compiled with a prefix ending with "mysql" (e.g.# /usr/local/mysql or /opt/mysql), it will rename any previously existing# directory with this name before installing the new package (which includes# a symlink named "mysql", pointing to the newly installed directory, which# is named mysql-<version>)#PREFIX="@prefix@"BASENAME=`basename $PREFIX`if [ -d $PREFIX -a ! -L $PREFIX -a $BASENAME = "mysql" ] ; then	mv $PREFIX $PREFIX.bakfi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -