dotfiles/home/default/scripts/syncthing-rm-stversions

10 lines
234 B
Plaintext
Raw Normal View History

2024-05-23 11:30:18 -04:00
#!/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