gl-inet-onescript/prepare.sh

13 lines
275 B
Bash
Raw Permalink Normal View History

2023-09-23 09:26:56 +08:00
#!/bin/sh
# 默认情况下MT3000和MT2500A的环境是ash
# 建议安装bash 满足更多的函数调用
check_bash_installed() {
if [ -x "/bin/bash" ]; then
2023-09-22 23:04:59 +08:00
echo "downloading prepare.sh ......"
else
opkg update
opkg install bash
fi
}
2023-09-22 23:04:59 +08:00
check_bash_installed