上一页 1 ··· 222 223 224 225 226 227 228 229 230 ··· 367 下一页
摘要: linux 中awk命令实现统计频数 1、 root@PC1:/home/test# ls a.txt root@PC1:/home/test# cat a.txt 3 4 6 3 2 4 8 2 1 5 6 2 4 3 6 1 2 4 7 3 3 4 7 2 root@PC1:/home/test 阅读全文
posted @ 2022-01-15 10:55 小鲨鱼2018 阅读(435) 评论(0) 推荐(0) 编辑
摘要: 1、循环数字 root@PC1:/home/test# ls root@PC1:/home/test# for((i = 1; i <= 5; i++)); do echo $i; done 1 2 3 4 5 2、 root@PC1:/home/test# ls root@PC1:/home/te 阅读全文
posted @ 2022-01-15 10:30 小鲨鱼2018 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1、获取环境变量 export env 2、测试export 和 env: root@PC1:/home/test# ls root@PC1:/home/test# export > export.txt ## 生成文件 root@PC1:/home/test# ls export.txt root 阅读全文
posted @ 2022-01-15 00:18 小鲨鱼2018 阅读(1238) 评论(0) 推荐(0) 编辑
摘要: 1、测试数据 root@PC1:/home/test# ls test.txt root@PC1:/home/test# cat test.txt 3 4 2 2 1 9 5 7 5 7 8 4 2 3 4 6 2、统计每行数据的最大值 root@PC1:/home/test# ls test.tx 阅读全文
posted @ 2022-01-14 22:02 小鲨鱼2018 阅读(818) 评论(0) 推荐(0) 编辑
摘要: 1、测试数据 root@PC1:/home/test# ls test.txt root@PC1:/home/test# cat test.txt 3 4 2 2 1 9 5 7 5 7 8 4 2 3 4 6 2、实现计算每行的和 root@PC1:/home/test# ls test.txt 阅读全文
posted @ 2022-01-14 21:34 小鲨鱼2018 阅读(2822) 评论(14) 推荐(0) 编辑
摘要: 1、测试数据 root@PC1:/home/test# ls test.txt root@PC1:/home/test# cat test.txt 3 4 2 2 1 9 5 7 5 7 8 4 2 3 4 6 2、输出每一列的最大值 root@PC1:/home/test# ls test.txt 阅读全文
posted @ 2022-01-14 21:20 小鲨鱼2018 阅读(860) 评论(0) 推荐(0) 编辑
摘要: 1、测试数据 root@PC1:/home/test# ls test.txt root@PC1:/home/test# cat test.txt 3 4 2 9 1 3 5 4 3 7 8 4 2 3 4 6 2、对每一列数据进行求和 root@PC1:/home/test# ls test.tx 阅读全文
posted @ 2022-01-14 20:56 小鲨鱼2018 阅读(2161) 评论(0) 推荐(0) 编辑
摘要: 在终端实现计算功能 1、在终端直接使用 root@PC1:/home/test# bc ## 在终端直接输入bc进入 bc 1.07.1 Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006, 2008, 2012-2017 Free Software 阅读全文
posted @ 2022-01-14 19:40 小鲨鱼2018 阅读(288) 评论(0) 推荐(0) 编辑
摘要: linux中date命令用于获取当前的日期 1、 root@PC1:/home/test# date ##在终端直接输入date即可获取当前的日期信息 2022年 01月 14日 星期五 12:30:42 CST 2、 root@PC1:/home/test# date +%Y ##年 2022 r 阅读全文
posted @ 2022-01-14 12:38 小鲨鱼2018 阅读(2570) 评论(0) 推荐(0) 编辑
摘要: 1、测试数据 root@PC1:/home/test# ls a.txt test.txt root@PC1:/home/test# cat test.txt 3 s j d z 4 x c 8 3 f z c m d root@PC1:/home/test# cat a.txt 1 2 3 2、 阅读全文
posted @ 2022-01-14 12:18 小鲨鱼2018 阅读(454) 评论(0) 推荐(0) 编辑
上一页 1 ··· 222 223 224 225 226 227 228 229 230 ··· 367 下一页