11 lines
163 B
Bash
11 lines
163 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# 下载依赖包
|
||
|
npm install http-server -g
|
||
|
|
||
|
wait
|
||
|
|
||
|
# 运行前端页面
|
||
|
cd /music-downloader/html
|
||
|
echo "run html, localhost:8080"
|
||
|
http-server -p 8080
|