大数据之Shell:企业真实面试题
Posted 浊酒南街
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大数据之Shell:企业真实面试题相关的知识,希望对你有一定的参考价值。
目录
问题1:获取随机字符串(8位)
[bigdata@hadoop101 datas]$ echo $RANDOM |md5sum |cut -c 1-8
问题2:使用Linux命令查询file1中空行所在的行号
[bigdata@hadoop101 datas]$ awk '/^$/{print NR}' file1.txt
5
问题3:有文件chengji.txt内容如下,使用Linux命令计算第二列的和并输出:
张三 40
李四 50
王五 60
[bigdata@hadoop101 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写一个脚本,对文本中无序的一列数字排序,并累加
[bigdata@hadoop101 ~]$ sort -n test.txt|awk '{a+=$0;print $0}END{print "SUM="a}'
[bigdata@hadoop101 ~]$ sort -n test.txt | awk 'BEGAIN{a=0}{a+=$0;print $0}END{print "SUM="a}'
问题6:请用shell脚本写出查找当前文件夹(/home)下所有的文本文件内容中包含有字符”shen”的文件名称
[bigdata@hadoop101 datas]$ grep -r "shen" /home | cut -d ":" -f 1
/home/bigdata/datas/sed.txt
/home/bigdata/datas/cut.txt
[bigdata@hadoop101 datas]$grep -r "shen" /root/shell_class21 | cut -d "/" -f 4 | cut -d ":" -f 1
以上是关于大数据之Shell:企业真实面试题的主要内容,如果未能解决你的问题,请参考以下文章
吐血整理50家企业真实大数据面试题!!学长实测,真实面试!!快收藏!