摘要:
出处:https://www.cnblogs.com/libra0920/p/5754356.html 哈喽大家好我是刘德华。 今天项目优化了一下上传头像的功能。采用 imagecropper 插件完成裁剪图片的效果。 这个插件裁剪完的图片都是 base64 加密的字符串,上传头像也就涉及到了如何把 阅读全文
摘要:
高亮: grep -n "Exception" log_info.log --color=auto vim: n 下一个 N上一个:set hls 打开高亮:set nohls 关闭高亮 阅读全文
摘要:
使用findstr进行过滤(类似Linux的grep),过滤出包含:3389的所有行: netstat -ano | findstr "LISTENING"| findstr ":3389" 使用tasklist就可以找到程序名称 tasklist | finstr "1072" 找到名称就可以通过 阅读全文