上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 374 下一页
摘要: 001、 [root@localhost test]# ls test.c [root@localhost test]# cat test.c #include <stdio.h> int main(void) { int i; printf("i = "); scanf("%d", &i); if 阅读全文
posted @ 2024-09-19 08:36 小鲨鱼2018 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Linux 中 awk命令如何截取指定字段的前几个字符。 01、 [root@localhost test]# ls a.txt [root@localhost test]# cat a.txt ## 测试数据 34 kjhge 31 dsbed 23 kmfeq 35 ewkmn [root@lo 阅读全文
posted @ 2024-09-07 19:16 小鲨鱼2018 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 001、 df <- data.frame(A = c(1, 2, 3), B = c(4, 5, 6), C = c(7, 8, 9)) row.names(df) <- c("mm", "qq", "dd") df cbind(com1 = rownames(df), df) ## 行号转换为第 阅读全文
posted @ 2024-09-04 10:08 小鲨鱼2018 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@localhost test]# ls test.c [root@localhost test]# cat test.c #include <stdio.h> int main(void) { int n1,n2; puts("please input two integers 阅读全文
posted @ 2024-09-04 09:27 小鲨鱼2018 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 001、相等运算符 == != 002、关系运算符 > >= < <= 003、条件运算符 a ? b:c [root@localhost test]# ls test.c [root@localhost test]# cat test.c #include <stdio.h> int main(v 阅读全文
posted @ 2024-09-04 09:12 小鲨鱼2018 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 001、c语言中条件运算符 [root@localhost test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int n1, n2, max; puts("please input two integers"); printf 阅读全文
posted @ 2024-09-03 12:59 小鲨鱼2018 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt idx.txt [root@PC1 test]# cat a.txt 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 阅读全文
posted @ 2024-09-02 10:59 小鲨鱼2018 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试数据如下 a 8 a 3 b 2 e 2 d 10 b 3 b 7 e 4 [root@PC1 test]# awk '{ay[$1] += $2; ay2[$1]++} E 阅读全文
posted @ 2024-09-01 22:28 小鲨鱼2018 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 001、 简单测试 [root@localhost test]# ls a.txt [root@localhost test]# cat a.txt ## 测试数据 dfghghj hgfdwe [root@localhost test]# sed 'G' a.txt ## G在每一行添加空行 df 阅读全文
posted @ 2024-08-22 13:37 小鲨鱼2018 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 001、查看系统信息 [root@localhost ~]# hostnamectl Static hostname: localhost.localdomain Icon name: computer-vm Chassis: vm Machine ID: 0f5ac3970da4429fa028c 阅读全文
posted @ 2024-08-21 12:43 小鲨鱼2018 阅读(544) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 374 下一页