mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
10 lines
238 B
Plaintext
10 lines
238 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
# Clean up all the _instances folders where
|
||
|
# ClickHouse services store their data.
|
||
|
#
|
||
|
# Note: needs root privilege because Docker mounts
|
||
|
# these folders into containers.
|
||
|
#
|
||
|
find . -type d -name _instances | sudo xargs rm -rf
|