摘要:
#!/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 阅读全文
摘要:
/*给图片加阴影和圆角,使其更美观*/ img{ filter: drop-shadow(3px 3px 2px gray); border-radius: 5px; } 阅读全文