🌓

2023面试总结

Linux 6种日志查看方法 tail: tail -n 10 test.log 查询日志尾部最后10行的日志; tail -n +10 test.log 查询10行之后的所有日志; head:与tail相反 cat:由第一行到最后一行连续显示在屏幕上 more:可翻页 sed:查找特定一段 sed -n ‘5,10p’ filename 这样你就可以...

阅读全文

Netty开端

“Netty is an asynchronous event-driven network application frameworkfor rapid development of maintainable high performance protocol servers & clients. 一、什么是Netty简介 “Netty is ...

阅读全文