5个实⽤的shell脚本⾯试题和答案
这边提到的5个⾯试问题,延续之前的有关Linux⾯试问题和答案。如果你是Tecmint的读者,你的⽀持我⾮常感谢。
1. 写⼀个shell脚本来得到当前的⽇期,时间,⽤户名和当前⼯作⽬录。
答案 : 输出⽤户名,当前⽇期和时间,以及当前⼯作⽬录的命令就是logname,date,who i am和pwd。
现在,创建⼀个名为userstats.sh⽂件,将下⾯的代码添加到它。
复制代码代码如下:
#!/bin/bash
echo "Hello, $LOGNAME"
echo "Current date is `date`"
echo "User is `who i am`"
echo "Current directory `pwd`"
给它添加执⾏权限,并且执⾏他。
复制代码代码如下:
# chmod 755 userstats.sh
# ./userstats.sh
样例输出
复制代码代码如下:
Hello, avi
Current date is Sat Jun 7 13:05:29 IST 2014
User is avi pts/0 2014-06-07 11:59 (:0)
Current directory /home/avi/Desktop
2.写⼀个shell脚本,进⾏两个数字的相加,如果没有输⼊参数就输出错误信息和⼀⾏使⽤说明
答案 : 下⾯是简单的shell脚本以及描述,如果没有命令⾏参数,它会抛出错误与如何使⽤脚本的说明。
再创建⼀个名为twonumbers.sh⽂件和下⾯的内容添加到⽂件⾥。
复制代码代码如下:
#!/bin/bash
# The Shebang
if [ $# -ne 2 ]
# If two Inputs are not received from Standard Input
then
# then execute the below statements
echo "Usage - $0 x y"
# print on standard output, how-to use the script (Usage - ./1.sh x y )
echo " Where x and y are two nos for which I will print sum"
# print on standard output, “Where x and y are two nos for which I will print sum ”
exit 1
# Leave shell in Error Stage and before the task was successfully carried out.
fi
# End of the if Statement.
echo "Sum of $1 and $2 is `expr $1 + $2`"
# If the above condition was false and user Entered two numbers as a command Line Argument,
it will show the sum of the entered numbers.
给他添加可执⾏权限,并且执⾏。
复制代码代码如下:
shell最简单脚本
# chmod 755 two-numbers.sh
情形⼀: 未输⼊两个数字作为命令⾏参数运⾏脚本,你将得到下⾯的输出。
样例输出
复制代码代码如下:
# ./two-numbers.sh
Usage - ./two-numbers.sh x y
Where x and y are two nos for which I will print sum
情形⼆: 当数字存在时,你会得到如图所⽰的结果。
复制代码代码如下:
$ ./two-numbers.sh 4 5
Sum of 4 and 5 is 9
因此,上述shell脚本满⾜了问题的要求。
3.你需要打印⼀个给定的数字的反序,如输⼊10572,输出27501,如果没有输⼊数据,应该抛出错误和使⽤脚本说明。在此之前,告诉我你需要在这⾥使⽤的算法。
算法
1.输⼊的数字为n
2.赋值 rev=0, sd=0 (反向和单个数字设置为0)
3.n % 10, 将得到最左边的数字
4.反向数字可以⽤这个⽅法⽣成 rev * 10 + sd
5.对输⼊数字进⾏右位移操作(除以10)
6.如果n > 0, 进⼊第三步,否则进⾏第七步
7.输出rev
现在,创建⼀个名为`numbers.sh`⽂件,并添加以下代码。
复制代码代码如下:
#!/bin/bash
if [ $# -ne 1 ]
then
echo "Usage: $0 number"
echo " I will find reverse of given number"
echo " For eg. $0 0123, I will print 3210"
exit 1
fi
n=$1
rev=0
sd=0
while [ $n -gt 0 ]
do
sd=`expr $n % 10`
rev=`expr $rev \* 10 + $sd`
n=`expr $n / 10`
done
echo "Reverse number is $rev"
授予对⽂件的执⾏权限,并运⾏如下所⽰的脚本。
复制代码代码如下:
# chmod 755 numbers.h
情形⼀: 当输⼊不包含命令⾏参数,你将得到下⾯的输出。
样例输出
复制代码代码如下:
./numbers.sh
Usage: ./numbers.sh number
I will find reverse of given number
For eg. ./2.sh 123, I will print 321
情形⼆: 正常输⼊
复制代码代码如下:
$ ./numbers.sh 10572
Reverse number is 27501
上⾯的脚本⾮常完美,输出正是我们需要的。
4. 你应该直接⽤终端,⽽不是依靠任何shell脚本来进⾏实数计算。你会怎么做(⽐如实数7.56+2.453)?
答案 : 我们需要⽤如下所述的特殊⽅式使⽤bc命令。将7.56+2.453作为输⼊通过管道进⼊bc中。
复制代码代码如下:
$ echo 7.56 + 2.453 | bc
10.013
5. 你需要给出圆周率的值,精度为⼩数点后100位,什么是最简单的⽅法。
答案 : 圆周率的值最简单的⽅法,我们只是需要发出以下命令。
复制代码代码如下:
# pi 100
3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342117067很明显!安装我们必须有包pi。只⽤⼀个apt或yum命令,就能获得所需的软件包,同时⽤最简单⽅法来实现这个需求。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论