校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識庫 > shell腳本nicenumber實現代碼

shell腳本nicenumber實現代碼

熱門標簽:智能電銷機器人有用嗎 怎么在百度地圖標注公司的位置 商機地圖標注 鶴崗400電話申請 測繪地圖標注名稱 德陽400電話申請 天津電話外呼系統排名 外呼電話系統怎么操作 百度地圖標注直線距離

Given a number, shows it in comma-separated form.Expects DD and TD to be instantiated. Instantiates nicenum. or, if a second arg is specified, the output is echoed to stdout.

廢話不多說,首先是

#!/bin/sh
# nicenumber -- Given a number, shows it in comma-separated form.
# Expects DD and TD to be instantiated. Instantiates nicenum
# or, if a second arg is specified, the output is echoed to stdout.

nicenumber()
{
 # Note that we assume that '.' is the decimal separator in
 # the INPUT value to this script. The decimal separator in the output value is
 # '.' unless specified by the user with the -d flag

 integer=$(echo $1 | cut -d. -f1)       # left of the decimal
 decimal=$(echo $1 | cut -d. -f2)       # right of the decimal

 if [ $decimal != $1 ]; then
  # There's a fractional part, so let's include it.
  result="${DD:="."}$decimal"
 fi

 thousands=$integer

 while [ $thousands -gt 999 ]; do
  remainder=$(($thousands % 1000))  # three least significant digits

  while [ ${#remainder} -lt 3 ] ; do # force leading zeros as needed
   remainder="0$remainder"
  done

  thousands=$(($thousands / 1000))  # to left of remainder, if any
  result="${TD:=","}${remainder}${result}"  # builds right to left
 done

 nicenum="${thousands}${result}"
 if [ ! -z $2 ] ; then
  echo $nicenum
 fi
}

DD="." # decimal point delimiter, to separate integer and fractional values
TD="," # thousands delimiter, to separate every three digits

while getopts "d:t:" opt; do
 case $opt in
  d ) DD="$OPTARG"  ;;
  t ) TD="$OPTARG"  ;;
 esac
done
shift $(($OPTIND - 1))

if [ $# -eq 0 ] ; then
 echo "Usage: $(basename $0) [-d c] [-t c] numeric value"
 echo " -d specifies the decimal point delimiter (default '.')"
 echo " -t specifies the thousands delimiter (default ',')"
 exit 0
fi

nicenumber $1 1     # second arg forces nicenumber to 'echo' output

exit 0

這腳本我們以后分析,現在先mark下。

標簽:六盤水 百色 鎮江 武漢 滁州 優質小號 丹東 自貢

巨人網絡通訊聲明:本文標題《shell腳本nicenumber實現代碼》,本文關鍵詞  shell,腳本,nicenumber,實現,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《shell腳本nicenumber實現代碼》相關的同類信息!
  • 本頁收集關于shell腳本nicenumber實現代碼的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 鲁山县| 卢龙县| 永兴县| 雅江县| 达孜县| 青河县| 都兰县| 巴楚县| 禹城市| 丹寨县| 旬邑县| 邛崃市| 隆子县| 亚东县| 石渠县| 辉南县| 宜川县| 堆龙德庆县| 乌拉特中旗| 炎陵县| 南平市| 合肥市| 福州市| 车险| 会东县| 黄陵县| 延寿县| 广昌县| 改则县| 瑞丽市| 屏东市| 石林| 尖扎县| 湟源县| 舟山市| 靖边县| 芦山县| 昭苏县| 黄石市| 阿图什市| 奇台县|