Info script
Create a file named “infospz.sh” with the following content in pzserver home directory:
#!/bin/bash
ServerName="pzserver"
MapConfigFiles=$(du -sh ~/Zomboid/Server/)
SavesFiles=$(du -sh ~/Zomboid/Saves/Multiplayer/${ServerName}/)
GlobalServerFiles=$(du -sh ~)
echo "Maps conf files size: $MapConfigFiles"
echo "Saves files size : $SavesFiles"
echo "Server global files size: $GlobalServerFiles"Do not forget to execute chmod +x command on the file to able to run it.
Last updated