摘要:
svn安装,如果只是安装svn client是不需要安装svn2个包的 只需要如下即可#! /bin/bashcd $1wget xxx/subversion-1.6.5_with_dep.tar.gztar zxf subversion-1.6.5_with_dep.tar.gzcd subversion-1.6.5./configure --with-ssl --prefix=$1/svn --exec-prefix=$1/svnmakemake installrm -rf $1/subversion-1.6.5rm -rf $1/subversion-1.6.5_with_dep.tar 阅读全文
posted @ 2012-08-28 20:52
Rik~
阅读(208)
评论(0)
推荐(0)
摘要:
<?php// 设置一些基本的变量// $host = "localhost";// $port = 1234;// var_dump($argv);$host = $argv[1];$port = $argv[2];echo "-------host=$host,port=$port-------";// 设置超时时间set_time_limit(3);// 创建一个Socket$socket = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could notcreate socket\ 阅读全文
posted @ 2012-08-28 15:05
Rik~
阅读(274)
评论(0)
推荐(0)
摘要:
<?phpif (! function_exists('pcntl_fork')) die('PCNTL functions not available on this PHP installation');$pid = pcntl_fork();var_dump("aaaaaaa");if ($pid == -1) { die('could not fork');} else if($pid) { var_dump("bbbbbbbbbbbbbb"); pcntl_wait($status);} e 阅读全文
posted @ 2012-08-28 15:04
Rik~
阅读(213)
评论(0)
推荐(0)
浙公网安备 33010602011771号