婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > 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實現代碼的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 合水县| 广宗县| 措勤县| 轮台县| 平武县| 叙永县| 天峻县| 桦川县| 巩义市| 榆林市| 隆回县| 盐源县| 蛟河市| 广昌县| 揭西县| 铜梁县| 林州市| 广德县| 城市| 正蓝旗| 犍为县| 益阳市| 兴宁市| 云霄县| 兴隆县| 锡林浩特市| 工布江达县| 贵州省| 怀宁县| 兖州市| 镇江市| 麻江县| 晋州市| 浦江县| 南阳市| 英超| 清镇市| 东丰县| 大埔县| 阜新市| 海口市|