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