好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > 8個實用的Shell腳本分享

8個實用的Shell腳本分享

熱門標簽:申請公司400電話要注意什么 奧維互動地圖標注參數 寧波智能外呼系統公司 電銷機器人 劍魚 曲阜400電話辦理 聯通電話機器人怎么接 地圖標注輻射圖案 衛星地圖標注地名 安裝外呼系統費用

幾個Shell腳本的例子,覺得還不錯。

【例子:001】判斷輸入為數字,字符或其他

復制代碼 代碼如下:

#!/bin/bash 
read -p "Enter a number or string here:" input 
 
case $input in 
   [0-9]) echo -e "Good job, Your input is a numberic! \n" ;; 
[a-zA-Z]) echo -e "Good job, Your input is a character! \n" ;; 
       *) echo -e "Your input is wrong, input again!   \n"  ;; 
esac 

【例子:002】求平均數
復制代碼 代碼如下:

#!/bin/bash 
 
# Calculate the average of a series of numbers. 
 
SCORE="0" 
AVERAGE="0" 
SUM="0" 
NUM="0" 
 
while true; do 
 
  echo -n "Enter your score [0-100%] ('q' for quit): "; read SCORE; 
 
  if (("$SCORE" "0"))  || (("$SCORE" > "100")); then 
    echo "Be serious.  Common, try again: " 
  elif [ "$SCORE" == "q" ]; then 
    echo "Average rating: $AVERAGE%." 
    break 
  else 
    SUM=$[$SUM + $SCORE] 
    NUM=$[$NUM + 1] 
    AVERAGE=$[$SUM / $NUM] 
  fi 
 
done 
 
echo "Exiting." 

【例子:003】自減輸出
復制代碼 代碼如下:

[scriptname: doit.sh] 
while (( $# > 0 )) 
do 
  echo $* 
  shift 
done  
         
/> ./doit.sh a b c d e 
a b c d e 
b c d e 
c d e 
d e 


【例子:004】在文件中添加前綴
復制代碼 代碼如下:

# 人名列表 
# cat namelist 
Jame 
Bob 
Tom 
Jerry 
Sherry 
Alice 
John 
 
# 腳本程序 
# cat namelist.sh 
#!/bin/bash 
for name in $(cat namelist) 
do 
        echo "name= " $name 
done 
echo "The name is out of namelist file" 
 
# 輸出結果 
# ./namelist.sh 
name=  Jame 
name=  Bob 
name=  Tom 
name=  Jerry 
name=  Sherry 
name=  Alice 
name=  John 

【例子:005】批量測試文件是否存在

復制代碼 代碼如下:

[root@host ~]# cat testfile.sh       
#!/bin/bash 
 
 
for file in test*.sh 
do 
  if [ -f $file ];then 
     echo "$file existed." 
  fi 
done 
 
[root@host ~]# ./testfile.sh 
test.sh existed. 
test1.sh existed. 
test2.sh existed. 
test3.sh existed. 
test4.sh existed. 
test5.sh existed. 
test78.sh existed. 
test_dev_null.sh existed. 
testfile.sh existed. 

【例子:005】用指定大小文件填充硬盤
復制代碼 代碼如下:

[root@host ~]# df -ih /tmp 
Filesystem            Inodes   IUsed   IFree IUse% Mounted on 
/dev/mapper/vg00-lvol5 
                       1000K    3.8K    997K    1% /tmp 
[root@host ~]# cat cover_disk.sh 
#!/bin/env bash 
counter=0 
max=3800 
remainder=0 
while true 
do 
    ((counter=counter+1)) 
    if [ ${#counter} -gt $max ];then 
        break 
    fi 
    ((remainder=counter%1000)) 
    if [ $remainder -eq 0 ];then 
        echo -e "counter=$counter\tdate=" $(date) 
    fi 
    mkdir -p /tmp/temp 
    cat testfile > "/tmp/temp/myfile.$counter" 
    if [ $? -ne 0 ];then 
        echo "Failed to write file to Disk." 
        exit 1 
    fi 
done 
echo "Done!" 
[root@host ~]# ./cover_disk.sh 
counter=1000    date= Wed Sep 10 09:20:39 HKT 2014 
counter=2000    date= Wed Sep 10 09:20:48 HKT 2014 
counter=3000    date= Wed Sep 10 09:20:56 HKT 2014 
cat: write error: No space left on device 
Failed to write file to Disk. 
dd if=/dev/zero of=testfile bs=1M count=1 

【例子:006】通過遍歷的方法讀取配置文件
復制代碼 代碼如下:

[root@host ~]# cat hosts.allow 
127.0.0.1 
127.0.0.2 
127.0.0.3 
127.0.0.4 
127.0.0.5 
127.0.0.6 
127.0.0.7 
127.0.0.8 
127.0.0.9 
[root@host ~]# cat readlines.sh 
#!/bin/env bash 
i=0 
while read LINE;do 
    hosts_allow[$i]=$LINE 
    ((i++)) 
done hosts.allow 
for ((i=1;i=${#hosts_allow[@]};i++)); do 
    echo ${hosts_allow[$i]} 
done 
echo "Done" 
[root@host ~]# ./readlines.sh 
127.0.0.2 
127.0.0.3 
127.0.0.4 
127.0.0.5 
127.0.0.6 
127.0.0.7 
127.0.0.8 
127.0.0.9 
Done 

【例子:007】簡單正則表達式應用
復制代碼 代碼如下:

[root@host ~]# cat regex.sh 
#!/bin/env sh 
#Filename: regex.sh 
regex="[A-Za-z0-9]{6}" 
if [[ $1 =~ $regex ]] 
then 
  num=$1 
  echo $num 
else 
  echo "Invalid entry" 
  exit 1 
fi 
[root@host ~]# ./regex.sh 123abc 
123abc 
 
#!/bin/env bash 
#Filename: validint.sh 
validint(){ 
    ret=`echo $1 | awk '{start = match($1,/^-?[0-9]+$/);if (start == 0) print "1";else print "0"}'` 
    return $ret 

 
validint $1 
 
if [ $? -ne 0 ]; then 
    echo "Wrong Entry" 
    exit 1 
else 
    echo "OK! Input number is:" $1 
fi 

【例子:008】簡單的按日期備份文件
復制代碼 代碼如下:

#!/bin/bash 
 
NOW=$(date +"%m-%d-%Y")      # 當前日期 
FILE="backup.$NOW.tar.gz"    # 備份文件 
echo "Backing up data to /tmp/backup.$NOW.tar.gz file, please wait..."  #打印信息 
tar xcvf /tmp/backup.$NOW.tar.gz /home/ /etc/ /var       # 同時備份多個文件到指定的tar壓縮文件中 
echo "Done..."          

您可能感興趣的文章:
  • 非常實用的23個Shell腳本實例
  • 幾例shell實用腳本(珍藏版)
  • MySQL的一些功能實用的Linux shell腳本分享
  • 5個實用的shell腳本面試題和答案
  • 工作中使用Shell實用腳本

標簽:上饒 仙桃 遵義 大慶 江西 安康 三門峽 大興安嶺

巨人網絡通訊聲明:本文標題《8個實用的Shell腳本分享》,本文關鍵詞  8個,實,用的,Shell,腳本,分享,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《8個實用的Shell腳本分享》相關的同類信息!
  • 本頁收集關于8個實用的Shell腳本分享的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 欲色淫香| 大尺度多肉爽文在线阅读| 免费大片av手机看片| 韩国黄色片视频| 国产精品???国产18| 国外幻女free性zozo交| 亚洲防屏蔽一区二区| 美女扒开内??给男人揉| 99这里有精品| 制服丝袜中出| 人成免费电影| 97插插插| 秋霞影院午夜伦A片欧美毛片| 久久国产精品综合| 20岁chinese免费男同| 成人在线视频在线观看| 夜夜偷香by一被子TXT| 国产人妻精品午夜福利免费| 最新电影在线观看| 黄色软件免费下载大全| 久久久久精品国产三级蜜奴| 免费看欧美成人A片无码| 动漫大胸胸被揉| 免费漫画无遮挡曰批动漫| 欧美日韩福利视频一区二区三区 | 两只手指慢慢探进幽| 高H盲女| 韩国电影《教室爱欲》免费看 | 他的粗大在我体内进出好多水| 国产91女技师在线播放| 女s调教男m文| 性受虐狂变态s姿势调教| 女女小黄文| 91在线无码精品秘?入口漫| 国产一级爱| 久久亚洲人成国产精品| xxx性欧美在线观看| 丫头把腿开大让我添添| (双性)(H)文| 久久精品69| bdsmcbt另类系列|