摘要: 001、输出字符串 [root@pc1 test1]# ls [root@pc1 test1]# printf "hello world\n" ## 方法一 hello world [root@pc1 test1]# printf "%s\n" "hello world" ## 方法二 hello 阅读全文
posted @ 2023-12-31 22:05 小鲨鱼2018 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 001、测试数据 [root@pc1 test1]# ls a.txt [root@pc1 test1]# cat a.txt ## 测试数据 d_j j k d d_kk 002、不指定分隔符 [root@pc1 test1]# ls a.txt [root@pc1 test1]# cat a.t 阅读全文
posted @ 2023-12-31 21:29 小鲨鱼2018 阅读(651) 评论(0) 推荐(0) 编辑
摘要: 001、paste [root@pc1 test1]# ls a.txt b.txt [root@pc1 test1]# cat a.txt ## 测试文件 01 02 03 04 05 06 07 08 09 10 [root@pc1 test1]# cat b.txt ## 测试文件 1 2 [ 阅读全文
posted @ 2023-12-31 18:07 小鲨鱼2018 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 001、gemma软件编译安装报错如下: src/gemma.cpp:79:10: fatal error: openblas_config.h: No such file or directory 002、解决方法 阅读全文
posted @ 2023-12-31 16:44 小鲨鱼2018 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 001、问题,gemma编译, make报错如下: src/mathfunc.h:34:18: error: call of overloaded ‘isnan(double&)’ is ambiguous 002、感觉像是c++编译器版本低的问题,升级gcc编辑器 a、 yum -y instal 阅读全文
posted @ 2023-12-31 10:11 小鲨鱼2018 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 01、 PD(待定): pending;表示在排队 02、CF(配置):configurating 03、R(运行):running 04、CG(完): 表示正在退出 05、CA(取消) 06、S:管理员正在挂起。 阅读全文
posted @ 2023-12-31 00:22 小鲨鱼2018 阅读(635) 评论(0) 推荐(1) 编辑
摘要: 001、设置文件不能被修改,同时也不能删除给文件: chattr +i file a、修改 [root@pc1 test]# ls a.txt [root@pc1 test]# lsattr a.txt ## 查看隐藏属性无 a.txt [root@pc1 test]# chattr +i a.tx 阅读全文
posted @ 2023-12-31 00:15 小鲨鱼2018 阅读(106) 评论(0) 推荐(0) 编辑