Skip to content

Instantly share code, notes, and snippets.

@lxxself
Last active February 4, 2023 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lxxself/0c3cbcab90d49e170974d536df988e28 to your computer and use it in GitHub Desktop.
Save lxxself/0c3cbcab90d49e170974d536df988e28 to your computer and use it in GitHub Desktop.
UnblockNeteaseMusic termux shell
#!bin/bash
#============
# Description: UnblockNeteaseMusic termux shell
# Link: https://github.com/nondanee/UnblockNeteaseMusic
# Version: 1.0.0
# Author: lxxself
#============
echo "============update更新============"
apt update && apt -y upgrade
echo "============安装git============"
apt -y install git
echo "============安装nodejs============"
apt -y install nodejs
echo "============clone代码============"
if [ ! -d "/UnblockNeteaseMusic" ]; then
git clone https://github.com/nondanee/UnblockNeteaseMusic.git
fi
echo "============开始执行,请保持后台常驻============"
cd UnblockNeteaseMusic
node app.js -s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment