# shell_script **Repository Path**: chen2ha/shell_script ## Basic Information - **Project Name**: shell_script - **Description**: 用来记录一些自己写过的 shell 脚本,方便以后自己维护,也方便和大家一起分享 - **Primary Language**: Shell - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-04 - **Last Updated**: 2024-08-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README - 用来记录一些自己写过的 shell 脚本,方便以后自己维护,也方便和大家一起分享 --- ```shell ├─ check_server # 检查主机信息 │ ├─ check_server.sh │ ├─ config │ └─ README.md ├─ docker_image_tags # 批量将本机或当前 k8s 集群使用的所有镜像,重新 tag 后上传到阿里云个人镜像仓库 │ ├─ docker_all_images_tag.sh │ └─ kubernetes_images_tag.sh ├─ inspection # 巡检脚本 │ ├─ inspection.sh │ └─ config │ └─ conf.sh ├─ mysqlFullBack # mysqldump 全库备份 │ ├─ config │ └─ mysqlBack.sh └─ sshAuth # ssh 免密 │ ├─ ssh_key.sh │ └─ ssh_list.txt └─ yum_repo_sync # yum 仓库同步 │ ├─ repofiles # repo 文件模板 │ │ ├─ centos.repo │ │ ├─ docker-ce.repo │ │ ├─ epel.repo │ │ └─ kubernetes.repo │ ├─ index.html # yum 私有仓库的前端源代码 │ └─ sync_repo.sh # yum 仓库同步脚本 ├─ boomGame.sh # 猜数字游戏 ├─ clenMemCache.sh # 清理内存的 buff 和 cache ├─ LICENSE ├─ README.md # 看看我 └─ tree # linux 模拟 tree 命令 ```