mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
5 lines
186 B
Bash
5 lines
186 B
Bash
#!/bin/sh
|
|
d="$MYSQLTEST_VARDIR/tmp/long_temporary_directory_path_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789"
|
|
test -d "$d" || mkdir "$d"
|
|
rm -f "$d"/*
|