2016-12-21 20:04:27 +00:00
|
|
|
#!/usr/bin/env bash
|
2013-09-03 12:52:58 +00:00
|
|
|
#!/bin/expect
|
|
|
|
|
|
|
|
# Set timeout
|
|
|
|
set timeout 600
|
|
|
|
|
|
|
|
# Get arguments
|
|
|
|
set query [lindex $argv 0]
|
|
|
|
|
|
|
|
spawn mysql-ib -u root -D hits
|
|
|
|
|
|
|
|
expect "mysql>"
|
|
|
|
send "$query\r"
|
|
|
|
|
|
|
|
expect "mysql>"
|
|
|
|
send "quit\r"
|
|
|
|
|
|
|
|
expect eof
|