摘要:
1:查看防火状态 systemctl status firewalld service iptables status 2:暂时关闭防火墙 systemctl stop firewalld service iptables stop 3:永久关闭防火墙 systemctl disable firew 阅读全文
摘要:
定时发送http请求监控网站,还有日志输出记录 @echo off color 1f title big-keyboard set INTERVAL=60 :lookHttp echo %date% %time% curl -s https://www.cnblogs.com/big-keyboar 阅读全文
摘要:
废话不多说,直接上代码 Js时间戳转(yyyy:MM:dd hh:mm:ss)格式 // 标准时间转换成年月日时分秒(补0) function getTime(timestamp) { var date = new Date(timestamp);//时间戳为10位需*1000,时间戳为13位的话不 阅读全文