07 2022 档案
摘要:
Linux软件源设置 debian 清华 https://mirrors.tuna.tsinghua.edu.cn/help/debian/ # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释 deb https://mirrors.tuna.tsinghua.edu.
阅读全文

摘要:
Linux之sed命令详解 sed是一种流编辑器,它是文本处理中非常好的工具,能够完美的配合正则表达式使用,功能不同凡响。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。接着处理下一行,
阅读全文

摘要:
Nginx Access Log日志统计分析常用命令 IP相关统计 统计IP访问量 awk '{print $1}' access.log | sort -n | uniq | wc -l 查看某一时间段的IP访问量(4-5点) grep "07/Apr/2017:0[4-5]" access.lo
阅读全文

摘要:https://blog.csdn.net/dQCFKyQDXYm3F8rB0/article/details/105897706 Go 编程时光 http://golang.iswbm.com/ Go 语言入门教程 http://c.biancheng.net/golang/ 菜鸟教程 https
阅读全文