本機(jī)多個(gè)IP
復(fù)制代碼 代碼如下:
ifconfig | awk '/inet/{print $2}' | awk -F: '{print $2}'
首先,先用這個(gè)來著
復(fù)制代碼 代碼如下:
CheckIPAddress()
{
echo $1 > /tmp/tmpserverip
echo $1 |grep "^[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}$" > /dev/null
if [ $? = 1 ]; then
return 1
else
a=$(cut -d. -f1 /tmp/tmpserverip)
b=$(cut -d. -f2 /tmp/tmpserverip)
c=$(cut -d. -f3 /tmp/tmpserverip)
d=$(cut -d. -f4 /tmp/tmpserverip)
for loop in $a $b $c $d
do
if [ $loop -ge 255 ] || [ $loop -le 0 ]; then
return 2
fi
done
fi
return 0
}
最初的時(shí)候,參考過下面的這些
復(fù)制代碼 代碼如下:
grep "^([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.([01]?\d\d?|2[0-4]\d|25[0-5])\.$"
輸入ip,檢查其是否滿足的ip書寫規(guī)范,即不能大于255,不能有字母,和其他標(biāo)點(diǎn),參考網(wǎng)上的,自己搞了個(gè)如下,做個(gè)標(biāo)記!@
復(fù)制代碼 代碼如下:
echo -n 'Enter the Server-ip:'
read BISSip
echo $BISSip > /tmp/tmpserverip
echo $BISSip|grep "^[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}$" > /dev/null
num=$?
if [ $num = 1 ]
then
echo error ip,please enter correct
else
{
a=$(cut -d. -f1 /tmp/tmpserverip)
b=$(cut -d. -f2 /tmp/tmpserverip)
c=$(cut -d. -f3 /tmp/tmpserverip)
d=$(cut -d. -f4 /tmp/tmpserverip)
{
if [ $a -ge 255 ]||[ $a -le 0 ]
then
echo a:error ip
else
echo 1 > /tmp/jack
fi
}
{
if [ $b -ge 255 ]||[ $b -lt 0 ]
then
echo b:error ip
else
echo 1 >>/tmp/jack
fi
}
{ if [ $c -ge 255 ]||[ $c -lt 0 ]
then
echo c:error ip
else
echo 1 >>/tmp/jack
fi
}
{ if [ $d -ge 255 ]||[ $d -le 0 ]
then
echo d:error ip
else
echo 1 >> /tmp/jack
fi
}
您可能感興趣的文章:- shell 正則表達(dá)式詳細(xì)整理
- Shell正則表達(dá)式之grep、sed、awk實(shí)操筆記
- Shell if中的正則表達(dá)式使用詳解
- Shell腳本中通過正則表達(dá)式匹配IP地址
- PowerShell中正則表達(dá)式使用例子
- linux shell 路徑截取正則表達(dá)式
- Shell正則表達(dá)式學(xué)習(xí)筆記
- PowerShell中使用正則表達(dá)式匹配字符串實(shí)例
- 詳解Linux--shell腳本之正則表達(dá)式
- shell高級學(xué)習(xí)之正則表達(dá)式