熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> 游戲開發 >> 正文

兩個很詳細的shell 實例代碼

2022-06-13   來源: 游戲開發 
兩個很詳細的shell 實例
一般編程步驟
  現在我們來討論編寫一個腳本的一般步驟任何優秀的腳本都應該具有幫助和輸入參數並且寫一個偽腳本(frameworksh)該腳本包含了大多數腳本都需要的框架結構是一個非常不錯的主意這時候在寫一個新的腳本時我們只需要執行一下copy命令
cp frameworksh myscript
  然後再插入自己的函數
  讓我們再看兩個例子
  二進制到十進制的轉換
  腳本 bd 將二進制數 (比如 ) 轉換為相應的十進制數這也是一個用expr命令進行數學運算的例子

  復制代碼 代碼如下:

  #!/bin/sh
# vim: set sw= ts= et:
help()
{
 cat < bh convert binary to decimal
USAGE: bh [h] binarynum
OPTIONS: h help text
EXAMPLE: bh
will return
HELP
 exit
}
error()
{
  # print an error and exit
  echo $
  exit
}
lastchar()
{
  # return the last character of a string in $rval
  if [ z $ ]; then
    # empty string
    rval=
    return
  fi
  # wc puts some space behind the output this is why we need sed:
  numofchar=`echo n $ | wc c | sed s/ //g `
  # now cut out the last char
  rval=`echo n $ | cut b $numofchar`
}
chop()
{
  # remove the last character in string and return it in $rval
  if [ z $ ]; then
    # empty string
    rval=
    return
  fi
  # wc puts some space behind the output this is why we need sed:
  numofchar=`echo n $ | wc c | sed s/ //g `
  if [ $numofchar = ]; then
    # only one char in string
    rval=
    return
  fi
  numofcharminus=`expr $numofchar `
  # now cut all but the last char:
  rval=`echo n $ | cut b ${numofcharminus}`
}
while [ n $ ]; do
case $ in
  h) help;shift ;; # function help is called
  ) shift;break;; # end of options
  *) error error: no such option $ h for help;;
  *) break;;
esac
done
# The main program
sum=
weight=
# one arg must be given:
[ z $ ] && help
binnum=$
binnumorig=$
while [ n $binnum ]; do
  lastchar $binnum
  if [ $rval = ]; then
    sum=`expr $weight + $sum`
  fi
  # remove the last position in $binnum
  chop $binnum
  binnum=$rval
  weight=`expr $weight * `
done
echo binary $binnumorig is decimal $sum
#


  該腳本使用的算法是利用十進制和二進制數權值 ()比如二進制可以這樣轉換成十進制
* + * =
  為了得到單個的二進制數我們是用了lastchar 函數該函數使用wc ?c計算字符個數然後使用cut命令取出末尾一個字符Chop函數的功能則是移除最後一個字符
  文件循環程序
  或許您是想將所有發出的郵件保存到一個文件中的人們中的一員但是在過了幾個月以後這個文件可能會變得很大以至於使對該文件的訪問速度變慢下面的腳本rotatefile 可以解決這個問題這個腳本可以重命名郵件保存文件(假設為outmail)為outmail而對於outmail就變成了outmail 等等等等

  復制代碼 代碼如下:

  #!/bin/sh
# vim: set sw= ts= et:
ver=
help()
{
  cat < rotatefile rotate the file name
USAGE: rotatefile [h] filename
OPTIONS: h help text
EXAMPLE: rotatefile out
This will eg rename out to out out to out out to out
and create an empty outfile
The max number is
version $ver
HELP
  exit
}
error()
{
  echo $
  exit
}
while [ n $ ]; do
case $ in
  h) help;shift ;;
  ) break;;
  *) echo error: no such option $ h for help;exit ;;
  *) break;;
esac
done
# input check:
if [ z $ ] ; then
error ERROR: you must specify a file use h for help
fi
filen=$
# rename any etc file:
for n in Array ; do
  if [ f $filen$n ]; then
    p=`expr $n + `
    echo mv $filen$n $filen$p
    mv $filen$n $filen$p
  fi
done
# rename the original file:
if [ f $filen ]; then
  echo mv $filen $filen
  mv $filen $filen
fi
echo touch $filen
touch $filen


  這個腳本是如何工作的呢?在檢測用戶提供了一個文件名以後我們進行一個Array到的循環文件Array被命名為文件重命名為Array等等循環完成之後我們將原始文件命名為文件同時建立一個與原始文件同名的空文件
調試
  最簡單的調試命令當然是使用echo命令您可以使用echo在任何懷疑出錯的地方打印任何變量值這也是絕大多數的shell程序員要花費%的時間來調試程序的原因Shell程序的好處在於不需要重新編譯插入一個echo命令也不需要多少時間
  shell也有一個真實的調試模式如果在腳本strangescript 中有錯誤您可以這樣來進行調試
sh x strangescript
  這將執行該腳本並顯示所有變量的值
  shell還有一個不需要執行腳本只是檢查語法的模式可以這樣使用
sh n your_script
  這將返回所有語法錯誤
  我們希望您現在可以開始寫您自己的shell腳本希望您玩得開心
From:http://tw.wingwit.com/Article/program/yxkf/201404/30420.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.