mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
8 lines
54 B
Bash
8 lines
54 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
for (( ; ; ))
|
||
|
|
do
|
||
|
|
sync
|
||
|
|
sleep 1
|
||
|
|
done
|