摘要:
/root/ansible/ansible.cfg [defaults] forks = 8 #执行时并发数 host_key_checking = False #不检测host key 阅读全文
摘要:
同步只增加的文件,已有的文件不同步 rsync -torpvg --ignore-existing --progress -e 'ssh -p 35325' ./ root@192.168.29.37:/home/xxc "--ignore-existing"是更新目标端不存在的文件。使用"--ex 阅读全文
摘要:
统计文件夹中文件的个数ls -l |grep "^-"|wc -l 统计某文件夹下目录的个数ls -l |grep "^d"|wc -l 统计当前目录下文件夹个数ls -l|grep "^d"| wc -l 统计文件夹下文件的个数,包括子文件夹里的ls -lR|grep "^-"|wc -l 查看大 阅读全文
摘要:
#22端口禁止,scp不能复制server端:python -mSimpleHTTPServer 8899 clinet端下载:wget http://192.168.29.37:8899/xxxx 阅读全文
摘要:
import hudson.model.*; println env.JOB_NAMEprintln env.BUILD_NUMBER println env.WORKSPACE pipeline { agent { label 'master' } stages { stage("Quality 阅读全文
摘要:
--删除podkubectl delete pod {podname} -n {namespace} --强制删除pod kubectl delete pod {podname} --force --grace-period=0 -n {namespace} --删除命名空间kubectl dele 阅读全文
摘要:
#!/bin/bash#批量实现SSH免密登录 #没有则安装expectif ! rpm -q expect > /dev/nullthen echo "###expect 未安装,现在安装###" yum install -y expect &>/dev/null if [ $? -ne 0 ] 阅读全文