mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
7 lines
85 B
Bash
Executable File
7 lines
85 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
FILE=${CURDIR}/file_02112
|
|
if [ -f $FILE ]; then
|
|
rm $FILE
|
|
fi
|