摘要:
1.1 基本实用命令整理 1、查找大文件文件 du -sh ./*|grep G # 查看当前目录下个文件大于1G的文件夹 2、查找日志文件中 5xx数量,并进行排序 tail -n 1000000 2019042410.access.log | grep "status\":\"5" | jq . 阅读全文
摘要:
1.1 vue中使用crypto-js进行AES加密解密 参考博客:https://www.cnblogs.com/qixidi/p/10137935.html 1、初始化vue项目 vue init webpack itany cd itany cnpm install npm install c 阅读全文