婷婷综合国产,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實現代碼的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 平邑县| 龙山县| 新郑市| 唐山市| 谷城县| 盐山县| 巫溪县| 类乌齐县| 绥阳县| 三江| 陇南市| 屯留县| 克什克腾旗| 南昌市| 攀枝花市| 威海市| 平邑县| 九龙城区| 辽源市| 德令哈市| 建德市| 麟游县| 芜湖市| 呈贡县| 疏勒县| 新乡市| 彩票| 富民县| 康定县| 固镇县| 来安县| 远安县| 紫金县| 绥滨县| 元朗区| 田林县| 盐源县| 沙坪坝区| 连平县| 武隆县| 房产|