上一页 1 ··· 395 396 397 398 399 400 401 402 403 ··· 407 下一页
摘要: 1、id命令用于反馈用于ID,所属组ID,(所属组名 ?) 使用root测试结果: [root@linuxprobe home]# whoami ## root用户 root [root@linuxprobe home]# echo $USER root [root@linuxprobe home] 阅读全文
posted @ 2020-10-12 21:50 小鲨鱼2018 阅读(1272) 评论(0) 推荐(0)
摘要: 1、基本结构 #!/bin/bash ## 声明脚本解释器 for 变量 in 可迭代对象 do 循环体 done 2、简单实例 [root@linuxprobe test3]# for i in 1 10 100 500;do echo $i;done ## 可以直接在命令行中使用,变量前需加 $ 阅读全文
posted @ 2020-10-12 21:39 小鲨鱼2018 阅读(859) 评论(0) 推荐(0)
摘要: 1、准备测试数据 [root@linuxprobe test3]# cat test.map 1 snp1 0 55910 1 snp2 0 85204 1 snp3 0 122948 1 snp4 0 203750 1 snp5 0 312707 1 snp6 0 356863 1 snp7 0 阅读全文
posted @ 2020-10-12 21:13 小鲨鱼2018 阅读(894) 评论(0) 推荐(0)
摘要: 1、创建测试数据 [root@linuxprobe test3]# cat a.txt e i j s e f Y U D S D G 2、小写转换为大写 tr [root@linuxprobe test3]# tr [a-z] [A-Z] < a.txt ## 所有小写字符转换为大写 E I J 阅读全文
posted @ 2020-10-11 23:27 小鲨鱼2018 阅读(3322) 评论(0) 推荐(1)
摘要: 1、创建测试数据 [root@linuxprobe test3]# cat a.txt wrwrt fdgsaf fsads gdfgde fsddd dffgdf sfdef sdfdsg 2、 [root@linuxprobe test3]# sed 's/.//' a.txt ##删除开头一个 阅读全文
posted @ 2020-10-11 22:28 小鲨鱼2018 阅读(3916) 评论(0) 推荐(0)
摘要: 1、创建测试数据 [root@linuxprobe test3]# cat a.txt w r t f s 4 6 6 a g g s d g r 4 d e w h s f g h 2、 [root@linuxprobe test3]# grep -E '^w|^a|h$' a.txt ## 提取 阅读全文
posted @ 2020-10-11 21:45 小鲨鱼2018 阅读(1495) 评论(0) 推荐(0)
摘要: 1、创建测试数据 [root@linuxprobe test3]# echo {1..300} | xargs -n 15 > a.txt [root@linuxprobe test3]# cat a.txt 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 阅读全文
posted @ 2020-10-11 21:35 小鲨鱼2018 阅读(10455) 评论(0) 推荐(0)
摘要: 1、运行python程序遇到下面问题,python版本3.6.8 ModuleNotFoundError: No module named 'scipy' 2、 pip3 install scipy 阅读全文
posted @ 2020-10-11 10:21 小鲨鱼2018 阅读(8238) 评论(0) 推荐(0)
摘要: 1、运行python程序,遇到下面报错,python版本3.6.8 import numpy as np ModuleNotFoundError: No module named 'numpy' 2、执行如下命令 pip3 install numpy 阅读全文
posted @ 2020-10-10 23:58 小鲨鱼2018 阅读(7056) 评论(0) 推荐(0)
摘要: 1、测试数据 [root@linuxprobe test]# ls test.map test.ped [root@linuxprobe test]# cat test.map ## 测试数据snpID为. 1 . 0 55910 1 . 0 85204 1 . 0 122948 1 . 0 203 阅读全文
posted @ 2020-10-10 21:53 小鲨鱼2018 阅读(583) 评论(0) 推荐(0)
上一页 1 ··· 395 396 397 398 399 400 401 402 403 ··· 407 下一页