欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

大数据之Shell:企业真实面试题

程序员文章站 2022-06-04 14:42:40
...

问题1:获取随机字符串(8位)

[[email protected] datas]$ echo $RANDOM |md5sum |cut -c 1-8

问题2:使用Linux命令查询file1中空行所在的行号

[[email protected] datas]$ awk '/^$/{print NR}' file1.txt 
5

问题3:有文件chengji.txt内容如下,使用Linux命令计算第二列的和并输出:

张三 40
李四 50
王五 60

[[email protected] datas]$ cat chengji.txt | awk -F " " '{sum+=$2} END{print sum}'
150

问题4:Shell脚本里如何检查一个a.txt文件是否存在?如果不存在则创建,并写入aaa?

#!/bin/bash
if [ -f a.txt ]; then
   echo "文件存在!"
else
   echo "文件不存在!"
   echo "aaa" >> a.txt
fi

问题5:用shell写一个脚本,对文本中无序的一列数字排序,并累加

[[email protected] ~]$ sort -n test.txt|awk '{a+=$0;print $0}END{print "SUM="a}'
[[email protected] ~]$ sort -n test.txt | awk 'BEGAIN{a=0}{a+=$0;print $0}END{print "SUM="a}'

问题6:请用shell脚本写出查找当前文件夹(/home)下所有的文本文件内容中包含有字符”shen”的文件名称

[[email protected] datas]$ grep -r "shen" /home | cut -d ":" -f 1
/home/bigdata/datas/sed.txt
/home/bigdata/datas/cut.txt
[[email protected] datas]$grep -r "shen" /root/shell_class21 | cut -d "/" -f 4 | cut -d ":" -f 1
相关标签: 大数据系列一