摘要: #!/bin/bash #1. 判断参数个数 if [ $# -lt 1 ] then echo Not Enough Arguement! exit; fi #2. 遍历集群所有机器 rpm -q rsync &>/dev/null || yum install -y rsync for host 阅读全文
posted @ 2023-02-28 17:13 18cm的烦恼 阅读(17) 评论(0) 推荐(0) 编辑
摘要: /*给图片加阴影和圆角,使其更美观*/ img{ filter: drop-shadow(3px 3px 2px gray); border-radius: 5px; } 阅读全文
posted @ 2023-02-28 10:50 18cm的烦恼 阅读(138) 评论(0) 推荐(0) 编辑