Shell 脚本基础学习 (四)
現(xiàn)在我們來討論編寫一個腳本的一般步驟。任何優(yōu)秀的腳本都應(yīng)該具有幫助和輸入?yún)?shù)。并且寫一個偽腳本(framework.sh),該腳本包含了大多數(shù)腳本都需要的框架結(jié)構(gòu),是一個非常不錯的主意。這時候,在寫一個新的腳本時我們只需要執(zhí)行一下copy命令:
cp framework.sh myscript
然后再插入自己的函數(shù)。
讓我們再看個例子:
二進(jìn)制到十進(jìn)制的轉(zhuǎn)換
腳本 b2d 將二進(jìn)制數(shù) (比如 1101) 轉(zhuǎn)換為相應(yīng)的十進(jìn)制數(shù)。這也是一個用expr命令進(jìn)行數(shù)學(xué)運算的例子:
View Code 1 #!/bin/sh2
3 # vim: set sw=4 ts=4 et:
4
5 help()
6
7 {
8
9 cat <
10
11 b2h -- convert binary to decimal
12
13 USAGE: b2h [-h] binarynum
14
15 OPTIONS: -h help text
16
17 EXAMPLE: b2h 111010
18
19 will return 58
20
21 HELP
22
23 exit 0
24
25 }
26
27 error()
28
29 {
30
31 # print an error and exit
32
33 echo "$1"
34
35 exit 1
36
37 }
38
39 lastchar()
40
41 {
42
43 # return the last character of a string in $rval
44
45 if [ -z "$1" ]; then
46
47 # empty string
48
49 rval=""
50
51 return
52
53 fi
54
55 # wc puts some space behind the output this is why we need sed:
56
57 numofchar=`echo -n "$1" | wc -c | sed 's/ //g' `
58
59 # now cut out the last char
60
61 rval=`echo -n "$1" | cut -b $numofchar`
62
63 }
64
65 chop()
66
67 {
68
69 # remove the last character in string and return it in $rval
70
71 if [ -z "$1" ]; then
72
73 # empty string
74
75 rval=""
76
77 return
78
79 fi
80
81 # wc puts some space behind the output this is why we need sed:
82
83 numofchar=`echo -n "$1" | wc -c | sed 's/ //g' `
84
85 if [ "$numofchar" = "1" ]; then
86
87 # only one char in string
88
89 rval=""
90
91 return
92
93 fi
94
95 numofcharminus1=`expr $numofchar "-" 1`
96
97 # now cut all but the last char:
98
99 rval=`echo -n "$1" | cut -b 0-${numofcharminus1}`
100
101 }
102
103 while [ -n "$1" ]; do
104
105 case $1 in
106
107 -h) help;shift 1;; # function help is called
108
109 --) shift;break;; # end of options
110
111 -*) error "error: no such option $1. -h for help";;
112
113 *) break;;
114
115 esac
116
117 done
118
119 # The main program
120
121 sum=0
122
123 weight=1
124
125 # one arg must be given:
126
127 [ -z "$1" ] && help
128
129 binnum="$1"
130
131 binnumorig="$1"
132
133 while [ -n "$binnum" ]; do
134
135 lastchar "$binnum"
136
137 if [ "$rval" = "1" ]; then
138
139 sum=`expr "$weight" "+" "$sum"`
140
141 fi
142
143 # remove the last position in $binnum
144
145 chop "$binnum"
146
147 binnum="$rval"
148
149 weight=`expr "$weight" "*" 2`
150
151 done
152
153 echo "binary $binnumorig is decimal $sum"
?
該腳本使用的算法是利用十進(jìn)制和二進(jìn)制數(shù)權(quán)值 (1,2,4,8,16,..),比如二進(jìn)制"10"可以這樣轉(zhuǎn)換成十進(jìn)制:
0 * 1 + 1 * 2 = 2
為了得到單個的二進(jìn)制數(shù)我們是用了lastchar 函數(shù)。該函數(shù)使用wc –c計算字符個數(shù),然后使用cut命令取出末尾一個字符。Chop函數(shù)的功能則是移除最后一個字符。
文件循環(huán)程序
或許您是想將所有發(fā)出的郵件保存到一個文件中的人們中的一員,但是在過了幾個月以后,這個文件可能會變得很大以至于使對該文件的訪問速度變慢。下面的 腳本rotatefile可
以解決這個問題。這個腳本可以重命名郵件保存文件(假設(shè)為outmail)為outmail.1,而對于 outmail.1就變成了outmail.2 等等等等...
View Code 1 #!/bin/sh2
3 # vim: set sw=4 ts=4 et:
4
5 ver="0.1"
6
7 help()
8
9 {
10
11 cat <
12
13 rotatefile -- rotate the file name
14
15 USAGE: rotatefile [-h] filename
16
17 OPTIONS: -h help text
18
19 EXAMPLE: rotatefile out
20
21 This will e.g rename out.2 to out.3, out.1 to out.2, out to out.1
22
23 and create an empty out-file
24
25 The max number is 10
26
27 version $ver
28
29 HELP
30
31 exit 0
32
33 }
34
35 error()
36
37 {
38
39 echo "$1"
40
41 exit 1
42
43 }
44
45 while [ -n "$1" ]; do
46
47 case $1 in
48
49 -h) help;shift 1;;
50
51 --) break;;
52
53 -*) echo "error: no such option $1. -h for help";exit 1;;
54
55 *) break;;
56
57 esac
58
59 done
60
61 # input check:
62
63 if [ -z "$1" ] ; then
64
65 error "ERROR: you must specify a file, use -h for help"
66
67 fi
68
69 filen="$1"
70
71 # rename any .1 , .2 etc file:
72
73 for n in 9 8 7 6 5 4 3 2 1; do
74
75 if [ -f "$filen.$n" ]; then
76
77 p=`expr $n + 1`
78
79 echo "mv $filen.$n $filen.$p"
80
81 mv $filen.$n $filen.$p
82
83 fi
84
85 done
86
87 # rename the original file:
88
89 if [ -f "$filen" ]; then
90
91 echo "mv $filen $filen.1"
92
93 mv $filen $filen.1
94
95 fi
96
97 echo touch $filen
98
99 touch $filen
這個腳本是如何工作的呢?在檢測用戶提供了一個文件名以后,我們進(jìn)行一個9到1的循環(huán)。文件9被命名為10,文件8重命名為9等等。循環(huán)完成之后,我們將原始文件命名為文件1
同時建立一個與原始文件同名的空文件。
調(diào)試
最簡單的調(diào)試命令當(dāng)然是使用echo命令。您可以使用echo在任何懷疑出錯的地方打印任何變量值。這也是絕大多數(shù)的shell程序員要花費80%的時間來調(diào)試程序的原因。Shell程序的
好處在于不需要重新編譯,插入一個echo命令也不需要多少時間。
shell也有一個真實的調(diào)試模式。如果在腳本"strangescript" 中有錯誤,您可以這樣來進(jìn)行調(diào)試:
sh -x strangescript
這將執(zhí)行該腳本并顯示所有變量的值。
shell還有一個不需要執(zhí)行腳本只是檢查語法的模式。可以這樣使用:
sh -n your_script
這將返回所有語法錯誤
這里L(fēng)inux shell腳本基礎(chǔ)學(xué)習(xí)就全部結(jié)束了。感謝大家的支持。
轉(zhuǎn)載于:https://www.cnblogs.com/Matrix54/archive/2012/04/07/2437157.html
《新程序員》:云原生和全面數(shù)字化實踐50位技術(shù)專家共同創(chuàng)作,文字、視頻、音頻交互閱讀總結(jié)
以上是生活随笔為你收集整理的Shell 脚本基础学习 (四)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ARM裸机开发环境搭建
- 下一篇: sdfdfd