修改百度地图AK

This commit is contained in:
shenquanyi
2025-11-04 09:43:23 +08:00
parent 07bd3ce5da
commit eca2040e5b
80 changed files with 975 additions and 15841 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
# 修复行尾符问题的脚本
echo "修复 node_manager.sh 的行尾符..."
# 方法1: 使用 sed (推荐)
sed -i 's/\r$//' node_manager.sh
# 设置执行权限
chmod +x node_manager.sh
echo "修复完成!"
echo "现在可以运行: ./node_manager.sh start"