Line 1... |
Line 1... |
1 |
#!/bin/bash
|
1 |
#!/bin/bash
|
- |
|
2 |
##############################################################################################################
|
2 |
# Script permettant d'initialiser en une seule commande l'ensemble de la base de données eFlore.
|
3 |
# But : Script permettant d'initialiser en une seule commande l'ensemble de la base de données eFlore.
|
- |
|
4 |
# Auteur : Jean-Pascal Milcent <jpm@tela-botanica.org> (translate bat file to shell script)
|
- |
|
5 |
# License : GPL v3
|
- |
|
6 |
# Création : 07 decembre 2011
|
- |
|
7 |
# Version: 0.1
|
- |
|
8 |
# 2011-12-07 - Création
|
- |
|
9 |
# $Id$
|
- |
|
10 |
##############################################################################################################
|
- |
|
11 |
# Constante
|
- |
|
12 |
APPDIR_ABSOLU=`pwd`;
|
- |
|
13 |
#
|
3 |
CHEMIN_PHP="/opt/lampp/bin"
|
14 |
CHEMIN_PHP="/opt/lampp/bin"
|
4 |
CHEMIN_TBF_CLI="/home/jpm/web/eflore/eflore-projets/scripts"
|
15 |
CHEMIN_TBF_CLI="$APPDIR_ABSOLU/scripts"
|
5 |
MEMORY_LIMIT="3500M"
|
16 |
MEMORY_LIMIT="3500M"
|
6 |
# Nécessite la création préalable de la base de données tb_eflore
|
17 |
# Nécessite la création préalable de la base de données tb_eflore
|
7 |
echo "Nettoyage et chargement en cours...";
|
18 |
echo "Nettoyage et chargement en cours...";
|
8 |
echo "BDNT :";
|
19 |
echo "BDNT :";
|
9 |
$CHEMIN_PHP/php -d memory_limit=$MEMORY_LIMIT $CHEMIN_TBF_CLI/cli.php bdnt -a supprimerTous
|
20 |
$CHEMIN_PHP/php -d memory_limit=$MEMORY_LIMIT $CHEMIN_TBF_CLI/cli.php bdnt -a supprimerTous
|