linux安装php扩展脚本分享
linux安装php扩展脚本分享
发布时间:2016-12-28 来源:查字典编辑
摘要:测试环境:ubuntu12.04php5.3.x复制代码代码如下:#!/bin/bash#Program:#Accomplishtoexpa...

测试环境:ubuntu 12.04 php 5.3.x

复制代码 代码如下:

#!/bin/bash

#Program:

#Accomplish to expand the specified function only one key

#History:

#2013/11/15 pankai<530911044@qq.com>first release

test ! -f ./ext_skel && echo "The shell script of 'ext_skel' doesn't exist in current directory.n" && exit 0

[ ! -d "skeleton" ] && echo "The directory of 'skeleton' doesn't exist in current directory.n" && exit 0

#include "./ext_skel"

read -p "Please input the extension name: " ext_name

#echo -e "hello $ext_name"

#The blank space is necessary

#Error:

# like: if[ ! -d "$ext_name" ]; then

if [ ! -d "$ext_name" ]; then

./ext_skel --extname=$ext_name

fi

file="./$ext_name/config.m4"

copy="./$ext_name/config"

if [ ! -f "./$ext_name/configs" ]; then

# Create a new file and clear it if it exists

:> "$copy"

cat "$file" | while read line

#for line in $( cat ./zend/config.m4 )

do

string=$( echo $line | grep 'PHP_ARG_ENABLE' )

if [ "$string" != "" ]; then

echo $line | cut -c5- >> $copy

read line

echo $line | cut -c5- >> $copy

read line

echo $line | cut -c5- >> $copy

read line

fi

echo $line >> $copy

done

mv "$file" "./$ext_name/configs"

mv "$copy" "./$ext_name/config.m4"

fi

cd $ext_name

phpize

./configure

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新linuxshell学习
热门linuxshell学习
脚本专栏子分类