摘要: 1、 [root@centos7pc1 test2]# ls test.sh [root@centos7pc1 test2]# cat test.sh ## 脚本 #!/bin/bash for i in `seq 9` do for j in `seq 9` do echo "$i * $j" | 阅读全文
posted @ 2022-04-05 20:03 小鲨鱼2018 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 1、 [root@rhel7pc1 test]# echo "xxx" xxx [root@rhel7pc1 test]# echo -n "xxx" ## -n选项实现不换行输出 xxx[root@rhel7pc1 test]# 阅读全文
posted @ 2022-04-05 19:55 小鲨鱼2018 阅读(505) 评论(0) 推荐(0) 编辑
摘要: 1、 [root@rhel7pc1 test]# ls test.sh [root@rhel7pc1 test]# cat test.sh #!/bin/bash NUM=10 while [ $NUM -gt 0 ] ## 循环条件 do echo "$NUM xxxx" let NUM-- ## 阅读全文
posted @ 2022-04-05 19:43 小鲨鱼2018 阅读(1159) 评论(0) 推荐(0) 编辑
摘要: 1、问题 configure: error: select TLS backend(s) or disable TLS with --without-ssl. 2、解决方法,没有问题 [root@rhel7pc1 curl-7.82.0]# ./configure --with-wolfssl 参考 阅读全文
posted @ 2022-04-05 18:27 小鲨鱼2018 阅读(2247) 评论(0) 推荐(0) 编辑
摘要: 1、下载地址:https://curl.se/download/ 参考:https://blog.csdn.net/wangpanbaoding/article/details/79104609 1)下载curl包(可以在这个网站上找最新的版本 http://curl.haxx.se/downloa 阅读全文
posted @ 2022-04-05 18:07 小鲨鱼2018 阅读(1448) 评论(0) 推荐(0) 编辑