08 2024 档案
摘要:001、 简单测试 [root@localhost test]# ls a.txt [root@localhost test]# cat a.txt ## 测试数据 dfghghj hgfdwe [root@localhost test]# sed 'G' a.txt ## G在每一行添加空行 df
阅读全文
摘要:001、查看系统信息 [root@localhost ~]# hostnamectl Static hostname: localhost.localdomain Icon name: computer-vm Chassis: vm Machine ID: 0f5ac3970da4429fa028c
阅读全文
摘要:001、系统 [liujiaxin01@PC1 ~]$ cat /etc/redhat-release Rocky Linux release 8.10 (Green Obsidian) 002、下载安装包(下载的4.2.12版本) [liujiaxin01@PC1 aspera]$ wget -c
阅读全文
摘要:001、查看系统 [liujiaxin01@PC1 aspera]$ cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) 002、下载安装包 [liujiaxin01@PC1 aspera]$ ls [liujiaxin01@PC
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文
摘要: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型
阅读全文
摘要: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
阅读全文
摘要: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
阅读全文
摘要: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\
阅读全文
摘要:001、问题 /home/liujiaxin01/.aspera/connect/bin/asperaconnect-nmh: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /home/liujiaxin
阅读全文
摘要: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 [
阅读全文
摘要: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
阅读全文