Show
Ignore:
Timestamp:
02/07/07 13:21:37 (2 years ago)
Author:
jm3
Message:

refactored perl and shell scripts so they all use the new config mechanism

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • feedmelinks/bin/create-ddl.sh

    r1185 r1325  
    11#!/bin/sh 
    22 
    3 # export the table structure of the DB 
     3. env.sh # read in environment config vars  
    44 
    5 mysqldump -u fml_fml -pfml fml_fml --no-data 
     5# export the table structure of the whole DB 
     6mysqldump -u `get_database_user` -p`get_database_password` `get_database_name` --no-data 
    67