Last active
February 22, 2021 22:01
-
-
Save viktoschi/ad2d93fa571cd113ef2d6526b1df5121 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#make a cronjob which execute that script after server reboot | |
#you need to install entr ( apt-get install entr ) | |
Worldsavelocation=/root/server/valheim/worlds/ | |
while $(true); do | |
find $Worldsavelocation | entr -s ./valheimbackup.sh | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment