Created
August 27, 2015 18:53
-
-
Save dsibilly/4d27f7cf5ae15e0e639e 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
#!/usr/bin/env bash | |
USER_DIR=/home/steam | |
ARK_DIR=$USER_DIR/Ark1 | |
SAVE_DIR=$USER_DIR/Ark1/ShooterGame/Saved | |
STEAMCMD=./steamcmd.sh | |
STEAMCMD_DIR=$USER_DIR/steamcmd | |
TEMP_DIR=$USER_DIR/Saved | |
mv $SAVE_DIR $TEMP_DIR | |
rm -rf $ARK_DIR | |
cd $STEAMCMD_DIR | |
$STEAMCMD +login anonymous +force_install_dir $ARK_DIR +app_update 376030 validate +quit | |
cd $USER_DIR | |
mv $TEMP_DIR $SAVE_DIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment