12 2020 档案
摘要:1、配置python解释器 使用 Ctrl + Shift + P 搜索配置项 Select Interpreter 然后输入或者查找对应python.exe的路径 2、配置python代码智能提示 使用Ctrl + , 搜索配置项 autoComplete 选择对应语言的配置项后,在setting
阅读全文
摘要:转https://www.linuxrumen.com/cyml/50.html 精髓就在下面这张图
阅读全文
摘要:1. find查找大小 find dir -type f # 仅查找文件 find -size 文件大小 例如 find -type f -size 100k # 查找大小为100k的文件 find -type f -size -20M # 查找小于20M(不含20M)的文件 find -type
阅读全文