摘要:
001、 for i in {1..10}; do ps -aux | grep "ascp" | grep "b20223040323" | awk '{print $2}' | xargs kill; sleep 5; done 。 nohup 递交任务应该是每一行执行一个进程号;因此杀掉一个进 阅读全文
摘要:
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 阅读全文
摘要:
001、测试表格 002、选中,按F5 a、选定位条件 b、 c、 直接输入一个测试文本 d、ctrl + enter 。 阅读全文
摘要:
001; 减号; 2212; alt + x; (注:这种方法打出来的减号和小键盘打出来的减号不一致) 002、en dash; 2013; alt + x 003、Hyphen (-); 2010; 选中alt + x 004、Em dash; 破折号;2014 ; alt + x referen 阅读全文
摘要:
001、在linux中如果程序正常执行,则返回0,错误执行返回非0值 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt sf ab 35 34543 [root@PC1 test]# grep "a" a.txt ab [root@PC1 te 阅读全文
摘要:
001、输出整型数据,直接输出 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { printf("[%d]\n", 123); return 0; } [root@PC 阅读全文
摘要:
001、 测试 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { int i = 10; double j = 5.8; printf("i + j = %f\n", 阅读全文
摘要:
001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int i; printf("i = "); scanf("%d", &i); //读取和输 阅读全文
摘要:
001、 给int型变量赋值double型数据 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int i; i = 8.583; printf("i 阅读全文
摘要:
001、 %f输出int型数据,其值为0. [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int i = 10; printf("i = %f\n" 阅读全文