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
19 lines
180 B
Bash
Executable File
19 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
|
|
count=128
|
|
|
|
if [ "x$1" == x ]; then
|
|
arg1=0
|
|
else
|
|
arg1="$1"
|
|
fi
|
|
|
|
if [ $arg1 -gt 0 ]; then
|
|
count=$arg1
|
|
fi
|
|
|
|
for (( i = 1; i <= count; i++ )); do
|
|
rm -rf $i
|
|
done
|
|
|