root/trunk/inputs/GBIF/_MySQL/MySQL_schema
1 |
#!/bin/sh
|
---|---|
2 |
set -o errexit |
3 |
|
4 |
alias sed="sed -`case "$(uname)" in Darwin) echo E;; *) echo r;; esac`" |
5 |
|
6 |
set -x |
7 |
exec sed -n '/^-- Table structure for table `.*`$/'\ |
8 |
',/^\/\*!40101 SET character_set_client = @saved_cs_client \*\/;$/{
|
9 |
p
|
10 |
}'
|