shell指令碼考點

來源:互聯網
上載者:User
文章目錄
  • 利用top取某個進程的CPU的指令碼:
  • 添加使用者:
  • 統計IP訪問:
  • 求2個數之和
  • 文本分析
  • 檔案整理
  • 列印原生交換分區大小
  • 輸出本機建立20000個目錄所用的時間
  • 列印當前sshd的連接埠和進程id
  • 列印root可以使用可執行檔數
  • 編譯目前的目錄下的所有.c檔案:
  • 將一目錄下所有的檔案的副檔名改為bak
空間管理 您的位置: 51Testing軟體測試網 » Plight » 日誌廣交好友~~ 想要討論的可以留下msn~~~ 希望群友網友經常能提出問題,一起解決,共同提高Shell 編程的一些常見筆試題

1. 用Shell編程,判斷一檔案是不是塊或字元裝置檔案,如果是將其拷貝到/dev目錄下。

#!/bin/bash
#1.sh
#判斷一檔案是不是字元或塊裝置檔案,如果是將其拷貝到/dev目錄下
#file executable: chmod 755 1.sh
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
echo -e "The program will Judge a file is or not a device file.\n\n"
read -p "Input a filename : " filename
if [ -b "$filename" -o
-c "$filename" ]
then
       echo "$filename is a device file"
&& cp $filename /dev/ &
else
       echo "$filename is not a device file"
&& exit 1
fi
----------------------------------------------------
2.設計一個shell程式,添加一個新組為class1,然後添加屬於這個組的30個使用者,使用者名稱的形式為stdxx,其中xx從01到30。

#!/bin/bash
#2.sh
#設計一個shell程式,添加一個新組為class1,然後添加屬於這個組的30個使用者,使用者名稱的形式為stdxx,其中xx從01到30。
#file executable: chmod 755 2.sh
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
groupadd class1
for i in {9901..9930}
do
      xx=`echo
$i | sed 's/99//g'`
       useradd -g class1 std$xx
       echo std$xx | passwd std$xx --stdin
       echo -e "user std$xx password is std$xx"
>> /root/newuser.txt
done

-------------------------------------------
3.編寫shell程式,實現自動刪除50個帳號的功能。帳號名為stud1至stud50。

#!/bin/bash
#4.sh
#編寫shell程式,實現自動刪除50個帳號的功能。帳號名為stud1至stud50。
#file executable: chmod 755 3.sh
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
i=1
while [ i -le 50 ]
do
   let i++
      userdel
-r stud$i
done

---------------------------------------------
4.某系統管理員需每天做一定的重複工作,請按照下列要求,編製一個解決方案:
(1)在下午4 :50刪除/abc目錄下的全部子目錄和全部檔案;
(2)從早8:00~下午6:00每小時讀取/xyz目錄下x1檔案中每行第一個域的全部資料加入到/backup目錄下的bak01.txt檔案內;
(3)每逢星期一下午5:50將/data目錄下的所有目錄和檔案歸檔並壓縮為檔案:backup.tar.gz;
(4)在下午5:55將IDE介面的CD-ROM卸載(假設:CD-ROM的裝置名稱為hdc);
(5)在早晨8:00前開機後啟動。

vim /etc/crontab在裡面增加下面內容:

50 16 * * * rootrm-rf
/abc/* 2>&1 &
00 8-18 * * * root cat /xyz/x1|awk
'{print $1}' >> /backup/bak01.txt 2>&1 &
50 17 * * 1 root cd /data;tar -zcvf backup.tar.gz * 2>&1 &
55 17 * * * root umount /hdc 2>&1 &

5)在早晨8:00前開機後啟動-->這個我不是很明白它的意思,不知道是不是8點前開機就啟動上面的設定,8點後才開機就不用啟動的意思。
姑且用下面這個命令吧
chkconfig --level 2345 crond on

---------------------------------------------
5.設計一個shell程式,在每月第一天備份並壓縮/etc目錄的所有內容,存放在/root/bak目錄裡,且檔案名稱
為如下形式yymmdd_etc,yy為年,mm為月,dd為日。Shell程式fileback存放在/usr/bin目錄下。

vim /usr/bin/fileback.sh

#!/bin/bash
#fileback.sh
#file executable: chmod 755 fileback.sh
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
filename=`date
+%y%m%d`_etc.tar.gz
cd /etc/
tar -zcvf $filename *
mv $filename /root/bak/
------------------------------------------------------
vim /etc/crontab加入
* * 1 * * root ./fileback.sh &

------------------------------------------------
6.有一普通使用者想在每周日淩晨零點零分定期備份/user/backup到/tmp目錄下,該使用者應如何做?
可以用contab -e來做,和上面一題差不多。

7.設計一個Shell程式,在/userdata目錄下建立50個目錄,即user1~user50,並設定每個目錄的許可權,其
其他使用者的許可權為:讀;檔案所有者的許可權為:讀、寫、執行;檔案所有者所在組的許可權為:讀、執行。

#!/bin/bash

 

 

 

如何把兩個檔案中相同的單詞,去除掉。

以下上檔案3.sh的內容
對本題做出了回答誠請各位大俠多多指教

>lwp1
for a in $(cat A)
do
echo $a>>lwp1
done

>lwp2
for b in $(cat B)
do
echo $b>>lwp2
done

>comf
for c in $(cat lwp1)
do
for d in $(cat lwp2)
do
if [ "$c" = "$d" ]
then echo $c>>comf
fi
done
done

>ptf1 
>ptf2

diff lwp1 comf|grep "\<"|tr "<" "\0" >
ptf1
diff lwp2 comf|grep "\<"|tr "<" "\0" >
ptf2

echo "ptf1 ---->>>> A "
echo "ptf2 ---->>>> B "

 

題目:

1.從a.log檔案中提取包含"WARNING"或"FATAL",同時不包含"IGNOR"的行,然後提取以":"分割的第5個欄位

2.編寫一個指令碼,只想簡單的減法運算,要求提示輸入變數

3. Shell指令碼閱讀(解釋下面執行的功能),請挑出下面程式或指令碼中的錯誤,並說明錯在哪裡。

#!/bin/bash

#監控cpuser的point連接埠是否正常

logname="/home/forum/log/lpointlog.wf"

flagfile="/home/forum/log/lognum.txt"

lodnum=sed -n "1,1 p"$flagfile

newnum=wc -l ${logname}

echo $newnum >$flagfile

totalnum=expr $newnum -$oldnum

tail -n $totalnum $logname |grep "POINT_THREAD
WARNING"

if [$?==0]

then

   mail -s "cpuser point "連接埠異常,請處理!"test@aa.com</dev/null

fi>

 

答案:

 

1.

#!/bin/bash
awk -F: '{if ($0~/(WARNING|FATAL)/ &&
$0!~/IGNOR/) {print $5}}' a.log

2.

#!/bin/bash
read -p "input a num:"
num1
read -p "input another num:" num2
result=`expr $num1 - $num2`
#let "result=num1-num2"
#let result=num1-num2
echo $result
~

3.

命令列替換用反引號,if [$?==0]應該寫做if [
$?=0 ],用來判斷上次命令是否執行成功;

倒數第二行應該是>/dev/null,最後fi後面的>去掉。

 

、寫指令碼實現,可以用shell、perl等。在目錄/tmp下找到100個以abc開頭的檔案,然後把這些檔案的第一行儲存到檔案new中。
2、寫指令碼實現,可以用shell、perl等。把檔案b中有的,但是檔案a中沒有的所有行,儲存為檔案c,並統計c的行數。

答案:

1

#!/bin/sh
forfilenamein`find/tmp-typef-name"abc*"|head-n100`
do
sed-n'1p'$filename>>new
done
或者
#!/bin/bash

#for filename in `find ./ -type f -name "*.sh" |head -n 5`

for filename in `ls *.sh |head -n 5`

do

read line1<$filename

echo $line1>>new

done
或者

find /tmp -type f -name “abc*” | head -n 100 | xargs head -q -n 1 >> new

2.

grep -vxFf a b | tee c | wc -l

(sort a b | uniq -u | tee c | wc -l 不行!!!)

 

 

 

 

利用top取某個進程的CPU的指令碼:

#/bin/sh

Max_CPU=0
Avg_CPU=0
Total_Time=1

Process=$1
Interval=$2

# check the parameters
if [ $# -ne 2 ]; then
   echo "Usage: $0 ProcessName Interval"
   exit
fi

LogFile="Per.txt"
echo "`date`" > $LogFile

while sleep $Interval
do
  top -d 1 -n 1|grep
$Process|grep -v grep|awk '{print $9"\t"$10}' >> $LogFile
done

 

 

添加使用者:

 

#/bin/bash

 

groupadd -f class1

for i in {9909..9911}

do

       xx=`echo $i | sed 's/99//g'`

       useradd -g class1 std${xx}

       echo std${xx} | passwd std${xx} --stdin

       echo -e "user std${xx} passwd is
std${xx}">>/root/newuser.txt

done

exit 0

 

      注意等號的前後不要有空格:xx=`echo $i | sed
's/99//g'`

      變數如果前後有字元,要是大括弧

 

統計IP訪問:

要求分析apache訪問日誌,找出訪問頁面數量在前100位的IP數。日誌大小在78M左右。以下是apache的訪問日誌節選

 

202.101.129.218 - - [26/Mar/2006:23:59:55
+0800] "GET /online/stat_inst.php?pid=d065 HTTP/1.1" 302
20-"-" "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows
NT 5.1)"

 

 

#
awk '{print $1}' log     |sort |uniq
-c|sort -r |head -n10

     5 221.224.78.15

     3 221.233.19.137

     1 58.63.148.135

     1 222.90.66.142

     1 222.218.90.239

     1 222.182.95.155

     1 221.7.249.206

     1 221.237.232.191

     1 221.235.61.109

     1 219.129.183.122

 

這個地方有個疑問,為什麼在使用uniq之前要sort。

 

求2個數之和

#/bin/bash

typeset first second

read -p "Input the first number:"
first

read -p "Input the second
number:" second

result=$[$first+$second]

echo "result is : $result"

exit 0

 

 

文本分析

取出password中shell出現的次數
第一種方法結果:
      4 /bin/bash
      1 /bin/sync
      1 /sbin/halt
     31 /sbin/nologin
      1 /sbin/shutdown
第二種方法結果:
/bin/sync       1
/bin/bash       1
/sbin/nologin   30
/sbin/halt      1
/sbin/shutdown  1

 

答案:

cat
/etc/passwd|awk -F: '{if ($7!="") print $7}'|sort|uniq –c

cat /etc/passwd|awk -F: '{if
($7!="") print $7}'|sort|uniq -c | awk '{print $2,$1}'

 

 

檔案整理

employee檔案中記錄了工號和姓名
employee.txt:
100 Jason Smith
200 John Doe
300 Sanjay Gupta
400 Ashok Sharma
bonus檔案中記錄工號和工資
bonus.txt:
100 $5,000
200 $500
300 $3,000
400 $1,250
要求把兩個檔案合并並輸出如下
處理結果:
400 ashok sharma $1,250
100 jason smith  $5,000
200 john doe  $500
300 sanjay gupta  $3,000

 

答案:join employee bonus | sort -k 2

 

 

列印原生交換分區大小

處理結果:
Swap:1024M

 

free -m | sed -n '/Swap/p' | awk
'{ print $2}'

free -m | sed -n 's/Swap:\ *\([0-9]*\).*/\1/p'

 

輸出本機建立20000個目錄所用的時間

處理結果:
real    0m3.367s
user    0m0.066s
sys     0m1.925s

 

答案:

#
time for i in {1..2000} ; do mkdir /root/neil$i; done

 

real   0m6.200s

user   0m1.128s

sys    0m4.710s

 

列印當前sshd的連接埠和進程id

處理結果:
sshd Port&&pid: 22 5412

 

答案:netstat -anp | grep sshd |
sed -n 's/.*:::\([0-9]*\)\ .* \ \([0-9]*\)\/sshd/\1 \2/p'

 

列印root可以使用可執行檔數

處理結果:
root's bins: 2306

 

echo "root's bins: $(find ./ -type f |
xargs ls -l | sed '/-..x/p' | wc -l)"

root's bins: 3664

 

編譯目前的目錄下的所有.c檔案:

 

for
file in *.c; do echo $file ; gcc -o $(basename $file .c) $file ; sleep 2; done > compile 2>&1

 

將一目錄下所有的檔案的副檔名改為bak

for
i in *.*;do mv $i ${i%%.*}.bak;done

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.