compile-netware-src
来自「这是linux下运行的mysql软件包,可用于linux 下安装 php + m」· 代码 · 共 36 行
TXT
36 行
#! /bin/sh # debug#set -x# stop on errorsset -eif test ! -r ./sql/mysqld.ccthen echo "you must start from the top source directory" exit 1fipath=`dirname $0`# cleanif test -e "Makefile"; then make -k clean; make -k distclean;fi# remove other filesrm -f */.deps/*.Prm -rf Makefile.in.bk# zip sourcefiles=`pwd | sed -e "s/.*\\\(mysql-.*\)/\1/"`file=`pwd | sed -e "s/.*\\mysql-\(.*\)/mysql-src-\1-pc-netware-i686/"`cd ..if test -e "$file.zip"; then rm -f $file.zip; fizip -r $file.zip $files -x \*.zip -x \*.tar.gzif test -e "./$files/$file.zip"; then mv -f ./$files/$file.zip ./$files/$file.zip.old; fimv -f $file.zip ./$files/$file.zip
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?