memgraph/libs/cleanup.sh

8 lines
101 B
Bash
Executable File

#!/bin/bash
for folder in ./* ; do
if [ -d "$folder" ]; then
rm -rf $folder
fi
done