shenggong
shenggong
全部文章
分类
题解(49)
归档
标签
去牛客网
登录
/
注册
shenggong的博客
全部文章
(共4篇)
题解 | #去掉空行#
while read line do if [[ -z $line ]];then continue else echo $line...
bash
2022-06-12
0
0
题解 | #输出第5行的内容#
line=0 while read p do ((line++)) if [[ $line -eq 5 ]] then echo $p ...
bash
2022-06-10
1
339
题解 | #输出7的倍数#
方法1: for i in {0..500} do if [[ i%7 -eq 0 ]];then echo $i  ...
bash
2022-06-10
1
0
题解 | #统计所有进程占用内存大小的和#
1、 sum=0 for i in `awk '{print $6}' nowcoder.txt` do ((sum+=$i)) done echo $sum 此处利用for循环,用变量i来接收nowcoder.txt文件每一行对应的数据,利...
bash
2021-08-13
34
2094