摘要:
001、 find ./ -type f -name "*fasta" -size +100M -size -200M ## 查找文件类型未文件; 名称未最后几个字符fasta, 文件的大小大于100M, 小于200M 。 阅读全文
摘要:
001、 计量资料 T检验; 计数资料 卡方检验; reference: 01、https://zhuanlan.zhihu.com/p/42803826 阅读全文
摘要:
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& 阅读全文
摘要:
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 ## 输 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
001、单行注释 // 002、多行注释 /* ......*/ 阅读全文
摘要:
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 | 阅读全文
摘要:
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 阅读全文