You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
8 lines
122 B
Bash
Executable File
8 lines
122 B
Bash
Executable File
#!/bin/sh
|
|
stillGoing=1
|
|
while [ $stillGoing -gt 0 ]
|
|
do
|
|
ps aux | grep cpimport | grep -v grep
|
|
sleep 1
|
|
done
|