mirror of
https://github.com/php/web-doc.git
synced 2025-08-13 14:40:31 +00:00
31 lines
1.7 KiB
Bash
Executable File
31 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
# +----------------------------------------------------------------------+
|
|
# | PHP Documentation Tools Site Source Code |
|
|
# +----------------------------------------------------------------------+
|
|
# | Copyright (c) 1997-2004 The PHP Group |
|
|
# +----------------------------------------------------------------------+
|
|
# | This source file is subject to version 3.0 of the PHP license, |
|
|
# | that is bundled with this package in the file LICENSE, and is |
|
|
# | available at through the world-wide-web at |
|
|
# | http://www.php.net/license/3_0.txt. |
|
|
# | If you did not receive a copy of the PHP license and are unable to |
|
|
# | obtain it through the world-wide-web, please send a note to |
|
|
# | license@php.net so we can mail you a copy immediately. |
|
|
# +----------------------------------------------------------------------+
|
|
# | Authors: Jacques Marneweck <jacques@php.net> |
|
|
# +----------------------------------------------------------------------+
|
|
#
|
|
# $Id: populatedocs.sh,v 1.5 2004-09-05 06:36:08 sean Exp $
|
|
|
|
cd /home/pure-ftpd-users/php001/docs.php.mirrors.powertrip.co.za
|
|
/bin/mkdir cvs
|
|
cd cvs
|
|
echo "Checking out PHP docs..."
|
|
/usr/bin/cvs -d :pserver:cvsread@cvs.php.net:/repository co phpdoc-all
|
|
echo "Checking out PHP GTK docs..."
|
|
/usr/bin/cvs -d :pserver:cvsread@cvs.php.net:/repository co php-gtk-doc
|
|
echo "Checking out Smarty docs..."
|
|
/usr/bin/cvs -d :pserver:cvsread@cvs.php.net:/repository co smarty/docs
|
|
echo "Checking out PEAR docs..."
|
|
/usr/bin/cvs -d :pserver:cvsread@cvs.php.net:/repository co peardoc
|