加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
reboot.sh 939 Bytes
一键复制 编辑 原始数据 按行查看 历史
dusen 提交于 2023-09-02 14:35 . [IMP] desensitization
#!/bin/bash
#author: Sen Du
#email: dusen.me@gmail.com
#created: 2023-04-16 21:00:00
#updated: 2023-04-16 21:00:00
set -e
source 00_env
# 避免误操作,添加输入密码步骤
function identification() {
read -s -p "请输入密码(该操作有风险,请确保清醒): " pswd
shapswd=$(echo $pswd | sha1sum | head -c 10)
if [[ "$shapswd" == "e6283c043a" ]]; then
echo && true
else
echo -e "\033[33m密码错误,程序终止!\033[0m"
echo && false
fi
}
# 重启机器
function reboot() {
cat config/vm_info | grep -v "^#" | grep -v "^$" | while read ipaddr name passwd
do
echo -e "$CSTART>>>>$ipaddr [$(date +'%Y-%m-%d %H:%M:%S')]$CEND";
ssh -n $ipaddr "reboot" || true;
done
}
function main() {
echo -e "$CSTART>reboot.sh$CEND"
echo -e "$CSTART>>identification$CEND"
identification
echo -e "$CSTART>>reboot$CEND"
reboot
}
main
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化