Skip to content

Instantly share code, notes, and snippets.

@Winding6636
Last active July 17, 2020 16:09
Show Gist options
  • Save Winding6636/183cb80ed9ecdbe960a0ac94beeb0d16 to your computer and use it in GitHub Desktop.
Save Winding6636/183cb80ed9ecdbe960a0ac94beeb0d16 to your computer and use it in GitHub Desktop.
@echo off
wsl.exe -e sh KyoshinM_Update.sh
pause
#!/bin/sh
URL="http://drive.google.com/uc?export=download&id=1IGMs9ypRgJmfcZY6sgH_JjroFnUpUlf2"
InsDIR=KiwiMonitor
echo Kyoshin Monitor Update.
echo
echo Application Download...
wget $URL -O kiwimonitor.zip
echo ExtractApplication.
unzip -u -o -d extract -q kiwimonitor.zip
echo Install/Update Application
mv extract/kiwimonitor*/* $InsDIR --update 2
echo cleaning...
rm -rf extract
rm kiwimonitor.zip
echo Complete.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment