This commit is contained in:
USER
2024-07-26 22:56:39 +01:00
parent f5512f19f6
commit 66ae3eec25
4 changed files with 14 additions and 10 deletions

View File

@ -1,11 +1,13 @@
syncthing cli config folders list > /tmp/final.2
BINARY=~/Downloads/.syncthing/syncthing
${BINARY} cli config folders list > /tmp/final.2
for i in `cat /tmp/final.2`
do
echo $i
syncthing cli config folders $i rescan-intervals set 19997
syncthing cli config folders $i fswatcher-enabled set false
syncthing cli config folders $i min-disk-free unit set GB
${BINARY} cli config folders $i rescan-intervals set 19997
${BINARY} cli config folders $i fswatcher-enabled set false
${BINARY} cli config folders $i min-disk-free unit set GB
done