PHP Core libraries

- add 4dev/ folder
This commit is contained in:
2013-12-11 15:44:33 +09:00
commit de4db95d16
38 changed files with 714 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#!/bin/bash
# $Id: import_data.sh 4382 2013-02-18 07:27:24Z gullevek $
# quick hack for import
#echo "EXIT";
#exit;
db='gullevek';
host='db.tokyo.tequila.jp';
user='gullevek';
#schema="publicv";
for file in `cat ORDER`;
do
if [ -f $file ];
then
# for path in $schema;
# do
# echo "WORK ON "$schema"."$file;
psql -U $user -h $host -f $file $db 1>> output 2>> error
# done;
fi;
done;