您好,登錄后才能下訂單哦!
這篇文章主要介紹“shell初學(xué)者必學(xué)的幾個(gè)腳本”,在日常操作中,相信很多人在shell初學(xué)者必學(xué)的幾個(gè)腳本問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”shell初學(xué)者必學(xué)的幾個(gè)腳本”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
[root@master sh]# cat test1.sh
求100以內(nèi)的素?cái)?shù)
#!/bin/bash
#求100以內(nèi)的素?cái)?shù)
for((i=2;i<=100;i++))
do
yn="y"
for((y=2;y<=$[$i/2];y++))
do
if [ $[$i % $y] == 0 ];then
yn="n"
break
fi
done
if [ "$yn" = "y" ];then
echo $i
fi
done
=================================
2. [root@master sh]# cat test2.sh
#!/bin/bash
#計(jì)算開機(jī)率
success=0
fail=0
for((i=1;i<50;i++));do
IP="172.16.80.$i"
ping -c1 $IP > /dev/null 2>&1
if [ $? -eq 0 ] ;then
let success=$success+1
else
let fail=$fail+1
fi
done
echo "computer start ratio $(($success*100/50))%"
echo "computer close ratio $(($fail*100/50))%"
====================================
3.[root@master sh]# cat test3.sh
#!/bin/bash
#1*1=1
#1*2=2 2*2=4
#1*3=3 2*3=6 3*3=9
#1*4=4 2*4=8 3*4=12 4*4=16
#.............................
#
#實(shí)質(zhì)被乘數(shù)就是行數(shù)。乘數(shù)的變化:乘數(shù)永遠(yuǎn)小于等于行數(shù)。
#乘數(shù)是number1 被乘數(shù)是line
#
for((line=1;line<=9;line++));do
for((number1=1;number1<=line;number1++));do
echo -n "$number1*$line=$[$number1*$line] "
done
echo
done
=====================================
4. [root@master ~]# cat ./tree1.sh
#!/bin/bash
#三角形:
# 三角形的總行數(shù)為total_line(5).
# 每行中有“total_line 減當(dāng)前行數(shù)”個(gè)空格,假設(shè)當(dāng)前行為current_line
# 每行中有"當(dāng)前行*2-1" 個(gè)星(star)
total_line=5
for((line=1;line<=total_line;line++));do
for((k=1;k<=total_line-line;k++));do
echo -n " "
done
for((s=1;s<=line*2-1;s++));do
echo -n '*'
done
echo
done
total_line=4
for((line=1;line<=total_line;line++));do
for((k=1;k<=3;k++));do
echo -n " "
done
for((s=1;s<=3;s++));do
echo -n '*'
done
echo
done
到此,關(guān)于“shell初學(xué)者必學(xué)的幾個(gè)腳本”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。