10 lines
234 B
Bash
Executable File
10 lines
234 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if compgen -G "/home/default/syncthing/*/.stversions/*" > /dev/null; then
|
|
rm -rf /home/default/syncthing/*/.stversions/*
|
|
echo "deleted all .stversions"
|
|
else
|
|
echo "no .stversions to remove"
|
|
fi
|