1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/srvswdev11/test002/clear.sh
2016-01-06 14:08:59 -06:00

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