5 lines
105 B
Plaintext
5 lines
105 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
find ~/syncthing/ -type f -name "*.sync-conflict*" -exec rm {} \;
|