常见的一些问题
本文引用自:https://elfgirl.top/archives/676
问题1:使用Linux命令查询file1中空行所在的行号
答案:
[xy@hadoop102 datas]$ awk '/^$/{print NR}' sed.txt
5
问题2:有文件chengji.txt内容如下:
张三 40
李四 50
王五 60
使用Linux命令计算第二列的和并输出
[xy@hadoop102 datas]$ cat chengji.txt | awk -F " " '{sum+=$2} END{print sum}'
150
问题3:Shell脚本里如何检查一个文件是否存在?如果不存在该如何处理?
#!/bin/bash
if [ -f file.txt ]; then
echo "文件存在!"
else
echo "文件不存在!"
fi
问题4:用shell写一个脚本,对文本中无序的一列数字排序,并求和
[root@CentOS6-2 ~]# cat test.txt
9
8
7
6
5
4
3
2
<