MinecraftServer / load_full.sh
YoBatM's picture
Update load_full.sh
9ff3f3d verified
raw
history blame contribute delete
294 Bytes
#!/bin/bash
# Verificar si se pasó un url y un archivo como parámetro
if [ $# -ne 2 ]; then
echo "Uso: $0 url archivo_de_entrada"
exit 1
fi
url="$1"
archivo_entrada="$2"
echo "Cargando"
bash load.sh $url $archivo_entrada
echo "Recuperando"
bash recover.sh $archivo_entrada
exit 0 | :