dotfiles/home/default/scripts/syncthing-rm-stversions
2024-05-23 11:30:18 -04:00

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