8 lines
157 B
Bash
Executable file
8 lines
157 B
Bash
Executable file
#!/bin/sh
|
|
|
|
file=${1-structure.surql}
|
|
ns=${2-test}
|
|
db=${3-test}
|
|
|
|
surreal import --conn http://localhost:8888 --user root --pass root --ns $ns --db $db $file
|
|
|