摘要:
001、 移除后缀 [root@PC1 test2]# a="a.csv.map.txt" ## 测试变量文件名称 [root@PC1 test2]# echo $a a.csv.map.txt [root@PC1 test2]# echo ${a%.*} ## 移除后缀使用的符号是% a.csv. 阅读全文
摘要:
001、简单测试 [root@PC1 test2]# ls [root@PC1 test2]# a="abc" ## 生成一个测试变量 [root@PC1 test2]# echo $a ## 输出变量方式1 abc [root@PC1 test2]# echo ${a} ## 输出变量方式2 ab 阅读全文
摘要:
001、方法1(基本逻辑是先提取每组的第一行和第四行; 然后将没两行转换为1行;最后将第二行再减去第一行) [root@PC1 test2]# ls a.txt [root@PC1 test2]# cat a.txt ## 测试数据 2.699350 2.699359 2.699940 2.6999 阅读全文
摘要:
001、 install.packages("devtools") library("devtools") install_github("lchiffon/REmap")library(REmap) . 阅读全文