mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 05:29:30 +00:00
11 lines
110 B
Bash
Executable File
11 lines
110 B
Bash
Executable File
#!/bin/sh
|
|
|
|
port=$1
|
|
query1=$2
|
|
t=$3
|
|
query2=$4
|
|
|
|
/tmp/$port/use -e "$query1"
|
|
sleep $t
|
|
/tmp/$port/use -e "$query2"
|