上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 403 下一页
摘要: 001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { double i; //声明double型 和 float型变量 float j; i = 3.14; j 阅读全文
posted @ 2024-08-19 23:35 小鲨鱼2018 阅读(69) 评论(0) 推荐(0)
摘要: 001、a、%lf、和 %f读入double型值 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { double i, j; // 声明两个double 阅读全文
posted @ 2024-08-19 22:51 小鲨鱼2018 阅读(99) 评论(0) 推荐(0)
摘要: 001、 测试%lf输出double型和int型变量的差异 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试c程序 #include <stdio.h> int main(void) { double i; /*声明doble型 阅读全文
posted @ 2024-08-19 21:54 小鲨鱼2018 阅读(46) 评论(0) 推荐(0)
摘要: 001、读入整型数据 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试脚本 #include <stdio.h> int main(void) { int i; //声明整型变量 puts("please input an in 阅读全文
posted @ 2024-08-19 21:37 小鲨鱼2018 阅读(104) 评论(0) 推荐(0)
摘要: 001、 sed实现 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 阅读全文
posted @ 2024-08-17 10:44 小鲨鱼2018 阅读(21) 评论(0) 推荐(0)
摘要: 001、整型格式化输出浮点型 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { double i; //定义浮点型变量 i = 5.8; printf("i = %d\ 阅读全文
posted @ 2024-08-14 10:58 小鲨鱼2018 阅读(49) 评论(0) 推荐(0)
摘要: 001、问题 /home/liujiaxin01/.aspera/connect/bin/asperaconnect-nmh: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /home/liujiaxin 阅读全文
posted @ 2024-08-09 19:50 小鲨鱼2018 阅读(19) 评论(0) 推荐(0)
摘要: 001、软件的安装 a、官网:https://www.ibm.com/products/aspera/downloads b、 c、 d、下载并解压 [root@PC1 software]# ls ibm-aspera-connect_4.2.12.780_linux_x86_64.tar.gz [ 阅读全文
posted @ 2024-08-09 19:23 小鲨鱼2018 阅读(277) 评论(0) 推荐(0)
摘要: 001、 for i in {1..10}; do ps -aux | grep "ascp" | grep "b20223040323" | awk '{print $2}' | xargs kill; sleep 5; done 。 nohup 递交任务应该是每一行执行一个进程号;因此杀掉一个进 阅读全文
posted @ 2024-08-07 17:00 小鲨鱼2018 阅读(58) 评论(0) 推荐(0)
摘要: 001、 [sy20213040737@admin2 test]$ ls a.txt [sy20213040737@admin2 test]$ cat a.txt 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 阅读全文
posted @ 2024-08-04 02:34 小鲨鱼2018 阅读(16) 评论(0) 推荐(0)
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 403 下一页