随笔分类 -  工具

摘要:查询目录下文件个数、内存占用等信息: a. 统计当前目录下文件的个数(不包括目录) ls -l | grep "^-" | wc -l b. 统计当前目录下文件的个数(包括子目录) ls -lR| grep "^-" | wc -l c. 查看某目录下文件夹(目录)的个数(包括子目录) ls -lR 阅读全文
posted @ 2024-01-20 00:05 rangoXTY 阅读(78) 评论(0) 推荐(0)
摘要:1. fatal: unable to access 'https://github.com/cruxopen/openISP.git/': Recv failure: Connection was reset 系统:Windows 11 报错信息如下: (base) PS D:\Project> 阅读全文
posted @ 2024-01-20 00:03 rangoXTY 阅读(21) 评论(0) 推荐(0)
摘要:ImageJ:https://imagej.net/ij/download.html 可以打开 Bayer 格式的图片,查看其像素值,在做一些 raw 域图像处理算法的时候会需要用到。 Snipaste: windows 上顶好用的截图、贴图工具,可以从微软商店直接安装。 YUView:https: 阅读全文
posted @ 2024-01-18 15:08 rangoXTY 阅读(78) 评论(0) 推荐(0)
摘要:前言 工作之后无法避免和 git 打交道,所以专门记录一些常用的 git 操作。 1. 克隆指定分支 git clone -b <branchname> <remote-repo-url> 2. 删除指定分支 git branch -d <localBranchName> # 删除本地分支 git 阅读全文
posted @ 2024-01-18 09:40 rangoXTY 阅读(12) 评论(0) 推荐(0)