上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 329 下一页
摘要: linux以树状图的形式,展示文件夹结构 tree -L 3 阅读全文
posted @ 2022-07-13 14:19 bH1pJ 阅读(73) 评论(0) 推荐(0) 编辑
摘要: linux如何查看文件夹下,文件数量多少? 使用了通配符 正则表达式; 阅读全文
posted @ 2022-07-13 14:19 bH1pJ 阅读(43) 评论(0) 推荐(0) 编辑
摘要: latex 通过 URL 插入图片 不像markdown那样 好像没有这种做法: 阅读全文
posted @ 2022-07-12 22:31 bH1pJ 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 有哪些比较好玩,好用的overleaf或者latex的tools? LaTeX tools - Overleaf, Online LaTeX Editor 这个不错哦,可以用来 编辑表格 编辑公式的平台,非常好用哦!!! 还有一些,比较好的模板; Gallery - Templates, Examp 阅读全文
posted @ 2022-07-12 21:11 bH1pJ 阅读(61) 评论(0) 推荐(0) 编辑
摘要: python 整数转换为二进制 def getCoutn(self, n): temp = format(n, "b") print(temp) python 统计字符串中 某个字符的个数 阅读全文
posted @ 2022-07-11 22:20 bH1pJ 阅读(69) 评论(0) 推荐(0) 编辑
摘要: python 统计字符串中 某个字符的个数 def getCoutn(self, n): temp = format(n, "b") st = str(temp) return st.count('1') 阅读全文
posted @ 2022-07-11 22:20 bH1pJ 阅读(81) 评论(0) 推荐(0) 编辑
摘要: linux 把一个文件夹重命名后,移动到另外一个文件夹下 mv /ssd1/AAA/PBMC_rat/RAT/index /ssd1/zhihengfeng/PBMC_rat/star 阅读全文
posted @ 2022-07-11 21:32 bH1pJ 阅读(27) 评论(0) 推荐(0) 编辑
摘要: linux vim 强制退出不保存T 阅读全文
posted @ 2022-07-11 16:01 bH1pJ 阅读(195) 评论(0) 推荐(0) 编辑
摘要: linux如何解压zip文件 unzip -o -d /home/sunny myfile.zip 阅读全文
posted @ 2022-07-11 15:41 bH1pJ 阅读(34) 评论(0) 推荐(0) 编辑
摘要: linux解压tar文件夹 tar -xvf ***.tar.gz 压缩 tar -zcvf 解压 tar -zxvf .tar.gz文件压缩: tar -zcvf 压缩文件名 .tar.gz 被压缩文件名 解压: tar -zxvf 压缩文件名.tar.gz # 打包后会比源文件还大一点(打包过程 阅读全文
posted @ 2022-07-11 15:04 bH1pJ 阅读(66) 评论(0) 推荐(0) 编辑
上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 329 下一页