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