上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 375 下一页
摘要: 001、 find ./ -type f -name "*fasta" -size +100M -size -200M ## 查找文件类型未文件; 名称未最后几个字符fasta, 文件的大小大于100M, 小于200M 。 阅读全文
posted @ 2024-07-17 22:33 小鲨鱼2018 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 001、 计量资料 T检验; 计数资料 卡方检验; reference: 01、https://zhuanlan.zhihu.com/p/42803826 阅读全文
posted @ 2024-07-16 20:09 小鲨鱼2018 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt 33 aa 44 aa 88 aa 33 aa ff kk 33 aa 88 22 mm 88 33 44 22 99 [root@PC1 test]# sed '2 s/.*/\n& 阅读全文
posted @ 2024-07-15 10:00 小鲨鱼2018 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数 aa bbb dd ff 77 dd 22 44 77 88 cc dd ee ff [root@PC1 test]# sed -n '/dd/p' a.txt ## 输 阅读全文
posted @ 2024-07-13 21:01 小鲨鱼2018 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 aa 33 aa 77 bb aa aa 22 aa kk cc bb dd aa uu 88 33 88 rr qq [root@PC1 test]# grep -o 阅读全文
posted @ 2024-07-13 13:00 小鲨鱼2018 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 aa bbbbbb cc bb ww xx yy zz dd jj kk mm ss [root@PC1 test]# awk '{sub("b+", "Q"); pr 阅读全文
posted @ 2024-07-11 09:49 小鲨鱼2018 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 001、Linux awk中如何删除数组 (base) [b20223040323@admin2 test]$ cut -f 5-6 rt288_2_3.bim | paste - <(cut -f 5-6 yt4_2_3.bim ) | head C A 0 A T C C T C A C A A 阅读全文
posted @ 2024-07-10 21:23 小鲨鱼2018 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 001、单行注释 // 002、多行注释 /* ......*/ 阅读全文
posted @ 2024-07-09 13:21 小鲨鱼2018 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 001、 -P选项表示 perl正则兼容 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 01 02 03 04 05 中国农副业 06 07 河南 08 09 10 [root@PC1 test]# cat a.txt | 阅读全文
posted @ 2024-07-09 13:06 小鲨鱼2018 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 01 02 03 04 05 中国农副业 06 07 河南 08 09 10 [root@PC1 test]# cat a.txt | grep -P '[\x{4e0 阅读全文
posted @ 2024-07-09 13:05 小鲨鱼2018 阅读(85) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 375 下一页