上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 367 下一页
摘要: 001、 方法1 [root@pc1 test]# ls test.sh [root@pc1 test]# cat test.sh ## 测试程序 #!/bin/bash function join_by { ## 定义函数 local IFS="$1" ## IFS定义输入分隔符, 其中local 阅读全文
posted @ 2023-11-05 16:35 小鲨鱼2018 阅读(88) 评论(0) 推荐(0) 编辑
摘要: linux 中 local为一个关键字,用于限制变量的作用范围(作用域),通常应用在函数的内部. 举例如下: 001、在函数内部定义变量, 不使用关键字local [root@pc1 test2]# ls a.sh [root@pc1 test2]# cat a.sh ## 测试函数 #/bin/b 阅读全文
posted @ 2023-11-05 16:06 小鲨鱼2018 阅读(1133) 评论(0) 推荐(0) 编辑
摘要: 001、 创建数组 a、方法1 [root@pc1 test01]# ay1=(100 200 "abc" "xyz") ## 创建数组 b、方法2 [root@pc1 test01]# ay2[0]=100 [root@pc1 test01]# ay2[1]=200 [root@pc1 test0 阅读全文
posted @ 2023-11-05 10:40 小鲨鱼2018 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 001、 https://www.yzktw.com.cn/post/1163597.html 阅读全文
posted @ 2023-11-04 22:43 小鲨鱼2018 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 001、问题如下: 002、解决方法: 003、 参考: 01、 阅读全文
posted @ 2023-11-04 21:44 小鲨鱼2018 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 001、问题, ./rmblastn 命令报错如下: ./rmblastn: error while loading shared libraries: libzstd.so.1: cannot open shared object file: No such file or directory 0 阅读全文
posted @ 2023-11-04 21:28 小鲨鱼2018 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 001、在执行perl Makefile.PL 命令时遇到如下报错: 002、解决方法: yum install perl-ExtUtils-MakeMaker 003、测试. 阅读全文
posted @ 2023-11-04 00:02 小鲨鱼2018 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 001、发行版信息 [root@pc1 test]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) ## centos7.6 002、当前gcc版本 [root@pc1 test]# gcc --version gcc (G 阅读全文
posted @ 2023-11-03 22:34 小鲨鱼2018 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 一、第一部分, 安装 RepeatMasker 01、安装TRF、github地址:https://github.com/Benson-Genomics-Lab/TRF tar -xzvf TRF-4.09.1.tar.gz ./configure make make install 02、安装rm 阅读全文
posted @ 2023-11-03 22:21 小鲨鱼2018 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 001、 (base) [root@pc1 test02]# ls a.txt (base) [root@pc1 test02]# cat a.txt ## 测试文件 use File::Basename; use File::Spec; use List::Util 'none'; use "Ca 阅读全文
posted @ 2023-11-03 16:35 小鲨鱼2018 阅读(232) 评论(0) 推荐(0) 编辑
上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 367 下一页