forked from maybe1229/jd-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
first_run.sh
executable file
·79 lines (64 loc) · 1.56 KB
/
first_run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/sh
## 修改日期:2020-10-17
## 作者:Evine Deng <[email protected]>
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
export LC_ALL=C
RootDir=$(cd $(dirname $0); pwd)
ShellDir="${RootDir}/shell"
LogDir="${RootDir}/log"
ScriptsDir="${RootDir}/scripts"
List=
if [ ! -d ${ScriptsDir} ]
then
echo "${ScriptsDir} 目录不存在,开始克隆..."
echo
cd ${RootDir}
git clone https://github.com/lxk0301/scripts
echo
else
echo "${ScriptsDir} 目录已存在,跳过克隆..."
echo
fi
if [ ! -d ${ShellDir} ]
then
echo "${ShellDir} 目录不存在,开始克隆..."
echo
cd ${RootDir}
git clone https://github.com/EvineDeng/jd-base shell
echo
else
echo "${ShellDir} 目录已存在,跳过克隆..."
echo
fi
if [ -d ${ScriptsDir}/.github/workflows ]; then
List=$(ls ${ScriptsDir}/.github/workflows/ | grep -E "jd_.+\.yml" | sed "s/\.yml//")
fi
if [ -n "$List" ]
then
for i in $List; do
if [ ! -d ${LogDir}/$i ]
then
echo "创建 ${LogDir}/$i 目录..."
echo
mkdir -p ${LogDir}/$i
else
echo "目录 ${LogDir}/$i 已存在,跳过创建..."
echo
fi
done
else
echo "js脚本获取不正常,请手动克隆..."
fi
if [ -s ${ShellDir}/jd.sh.sample ]
then
if [ -n "$List" ]; then
for i in $List; do
cp -fv "${ShellDir}/jd.sh.sample" "${ShellDir}/$i.sh"
chmod +x "${ShellDir}/$i.sh"
echo
done
fi
else
echo "脚本 $${ShellDir}/jd.sh.sample 文件不存在或内容为空,可能shell脚本克隆不正常,请手动克隆..."
echo
fi