1 Star 0 Fork 32

SongChaoHua/springboot2.x

forked from 赛泰先生/springboot2.x 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
zip.sh 1018 Bytes
一键复制 编辑 原始数据 按行查看 历史
explore 提交于 2023-05-29 17:09 . 初始化
#!/bin/bash
# shellcheck disable=SC2070
# sh zip.sh 097-springboot-rocketmq /Users/explore/B站素材/源代码/RocketMQ实战源代码
# 使用示例
if [ ! -n "${1}" ]; then
echo "you have not input a string!"
else
# 先把隐藏文件删除
# shellcheck disable=SC2164
cd "${1}"
# 查找指定目录下指定的隐藏文件,并执行删除操作
find $PWD -type f | grep -E ".DS_Store$" | xargs rm -rf
# 删除临时文件
find $PWD -type f | grep -E "(~\$)" | xargs rm -rf
# 删除.idea文件
find "$PWD" | grep '\.idea' | xargs rm -rf
# shellcheck disable=SC2164
# shellcheck disable=SC2103
cd -
# shellcheck disable=SC2034
value=$((RANDOM * 1000))
# shellcheck disable=SC2034
pwd=${value:0:4}
# zip -P ${pwd} -r /Users/explore/B站素材/源代码/MybatisPlus实战源代码/"${1}".zip "${1}"
# echo ${pwd} > /Users/explore/B站素材/源代码/MybatisPlus实战源代码/解压密码.txt
zip -P ${pwd} -r ${2}/"${1}".zip "${1}"
echo ${pwd} > ${2}/解压密码.txt
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/songchaohua/springboot2.x.git
git@gitee.com:songchaohua/springboot2.x.git
songchaohua
springboot2.x
springboot2.x
main

搜索帮助