這邊提到的5個(gè)面試問題,延續(xù)之前的有關(guān)Linux面試問題和答案。如果你是Tecmint的讀者,你的支持我非常感謝。
1. 寫一個(gè)shell腳本來得到當(dāng)前的日期,時(shí)間,用戶名和當(dāng)前工作目錄。
答案 : 輸出用戶名,當(dāng)前日期和時(shí)間,以及當(dāng)前工作目錄的命令就是logname,date,who i am和pwd。
現(xiàn)在,創(chuàng)建一個(gè)名為userstats.sh文件,將下面的代碼添加到它。
復(fù)制代碼 代碼如下:
#!/bin/bash
echo "Hello, $LOGNAME"
echo "Current date is `date`"
echo "User is `who i am`"
echo "Current directory `pwd`"
給它添加執(zhí)行權(quán)限,并且執(zhí)行他。
復(fù)制代碼 代碼如下:
# chmod 755 userstats.sh
# ./userstats.sh
樣例輸出
復(fù)制代碼 代碼如下:
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.寫一個(gè)shell腳本,進(jìn)行兩個(gè)數(shù)字的相加,如果沒有輸入?yún)?shù)就輸出錯(cuò)誤信息和一行使用說明
答案 : 下面是簡單的shell腳本以及描述,如果沒有命令行參數(shù),它會(huì)拋出錯(cuò)誤與如何使用腳本的說明。
再創(chuàng)建一個(gè)名為twonumbers.sh文件和下面的內(nèi)容添加到文件里。
復(fù)制代碼 代碼如下:
#!/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.
給他添加可執(zhí)行權(quán)限,并且執(zhí)行。
復(fù)制代碼 代碼如下:
# chmod 755 two-numbers.sh
情形一: 未輸入兩個(gè)數(shù)字作為命令行參數(shù)運(yùn)行腳本,你將得到下面的輸出。
樣例輸出
復(fù)制代碼 代碼如下:
# ./two-numbers.sh
Usage - ./two-numbers.sh x y
Where x and y are two nos for which I will print sum
情形二: 當(dāng)數(shù)字存在時(shí),你會(huì)得到如圖所示的結(jié)果。
復(fù)制代碼 代碼如下:
$ ./two-numbers.sh 4 5
Sum of 4 and 5 is 9
因此,上述shell腳本滿足了問題的要求。
3.你需要打印一個(gè)給定的數(shù)字的反序,如輸入10572,輸出27501,如果沒有輸入數(shù)據(jù),應(yīng)該拋出錯(cuò)誤和使用腳本說明。在此之前,告訴我你需要在這里使用的算法。
算法
1.輸入的數(shù)字為n
2.賦值 rev=0, sd=0 (反向和單個(gè)數(shù)字設(shè)置為0)
3.n % 10, 將得到最左邊的數(shù)字
4.反向數(shù)字可以用這個(gè)方法生成 rev * 10 + sd
5.對輸入數(shù)字進(jìn)行右位移操作(除以10)
6.如果n > 0, 進(jìn)入第三步,否則進(jìn)行第七步
7.輸出rev
現(xiàn)在,創(chuàng)建一個(gè)名為`numbers.sh`文件,并添加以下代碼。
復(fù)制代碼 代碼如下:
#!/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"
授予對文件的執(zhí)行權(quán)限,并運(yùn)行如下所示的腳本。
復(fù)制代碼 代碼如下:
# chmod 755 numbers.h
情形一: 當(dāng)輸入不包含命令行參數(shù),你將得到下面的輸出。
樣例輸出
復(fù)制代碼 代碼如下:
./numbers.sh
Usage: ./numbers.sh number
I will find reverse of given number
For eg. ./2.sh 123, I will print 321
情形二: 正常輸入
復(fù)制代碼 代碼如下:
$ ./numbers.sh 10572
Reverse number is 27501
上面的腳本非常完美,輸出正是我們需要的。
4. 你應(yīng)該直接用終端,而不是依靠任何shell腳本來進(jìn)行實(shí)數(shù)計(jì)算。你會(huì)怎么做(比如實(shí)數(shù)7.56+2.453)?
答案 : 我們需要用如下所述的特殊方式使用bc命令。將7.56+2.453作為輸入通過管道進(jìn)入bc中。
復(fù)制代碼 代碼如下:
$ echo 7.56 + 2.453 | bc
10.013
5. 你需要給出圓周率的值,精度為小數(shù)點(diǎn)后100位,什么是最簡單的方法。
答案 : 找圓周率的值最簡單的方法,我們只是需要發(fā)出以下命令。
復(fù)制代碼 代碼如下:
# pi 100
3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342117067
很明顯!安裝我們必須有包pi。只用一個(gè)apt或yum命令,就能獲得所需的軟件包,同時(shí)用最簡單方法來實(shí)現(xiàn)這個(gè)需求。
您可能感興趣的文章:- 非常實(shí)用的23個(gè)Shell腳本實(shí)例
- 幾例shell實(shí)用腳本(珍藏版)
- MySQL的一些功能實(shí)用的Linux shell腳本分享
- 8個(gè)實(shí)用的Shell腳本分享
- 工作中使用Shell實(shí)用腳本