2022年8月19日

前端常用网址总结

摘要: https://blog.csdn.net/duanhy_love/article/details/110007515 在线CSS编辑 http://tool.alixixi.com/csseditor/ http://c.biancheng.net/css3/position.html https 阅读全文

posted @ 2022-08-19 15:17 四海骄阳 阅读(519) 评论(0) 推荐(0) 编辑

前端常用网址

摘要: 1、webpack插件 https://www.npmjs.com/ 2、webpack官网 https://www.webpackjs.com/ 插件:https://www.webpackjs.com/plugins/ loader:https://www.webpackjs.com/loade 阅读全文

posted @ 2022-08-19 14:56 四海骄阳 阅读(96) 评论(0) 推荐(0) 编辑

monitor.sh

摘要: #!/bin/bash#获取cpu使用率cpuUsage=`top -b -n 1 |grep Cpu | awk '{print $2}' |awk -F. '{print $1}'`#获取磁盘使用率data_name="/dev/vda1"diskUsage=`df -h | grep $dat 阅读全文

posted @ 2022-08-19 09:29 四海骄阳 阅读(23) 评论(0) 推荐(0) 编辑

统计linux nginx访问次数及并发连接数

摘要: https://www.cnblogs.com/shiqing-zhang/articles/14888827.html 访问量统计 1.根据访问IP统计UV awk '{print $1}' access.log|sort | uniq -c |wc -l 2.统计访问URL统计PV awk '{ 阅读全文

posted @ 2022-08-19 09:09 四海骄阳 阅读(2514) 评论(0) 推荐(0) 编辑

导航