摘要:
001、make命令报错如下: "none" is not exported by the List::Util module 002、解决方法 将 /usr/local/bin/automake-1.16文件的76行中的 ‘none’删除 (base) [root@pc1 build]# sed 阅读全文
摘要:
001、报错如下:/home/software/TRF/missing: line 81: aclocal-1.16: command not found 002、解决方法 下载automake: 官网:https://mirrors.sjtug.sjtu.edu.cn/gnu/automake/? 阅读全文
摘要:
001、 [root@pc1 test]# for i in ab8 ab23 ab98; do echo $i; done ## 直接迭代 ab8 ab23 ab98 [root@pc1 test]# for i in ab{8,23,98}; do echo $i; done ## 可以写成如下 阅读全文