发布时间:2017-02-22 14:44:23
最近在发布版本时,需要多个台主机之间来回scp,而且每次需要数据密码,操作比较麻烦。因此,写个脚本一键发布。前提需要ssh免密钥登录,具体操作详解ssh免密钥登录。点击(此处)折叠或打开#!/bin/bashdest_ip_arr=(10.99.11.23)dest_lib_dir="/ins.........【阅读全文】
发布时间:2017-02-17 09:38:30
#!/bin/bashlogs_path="/tomcat/tomcat-token/logs"find $logs_path -mtime +7 -name "localhost_access_log.*.txt" -exec rm -rf {} \;find $logs_path -mtime +7 -name "catalina.*.log" -exec rm -rf {} \;find $logs_path -mtime +7 -name "manager.*.log" -exec rm -rf {} \;find $logs_path -mtime +7 -name ".........【阅读全文】