婷婷综合国产,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實現代碼的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 洞口县| 武威市| 马关县| 鹤庆县| 铜川市| 东丽区| 揭西县| 绥化市| 新源县| 兖州市| 泸溪县| 山阳县| 方城县| 青阳县| 湛江市| 都匀市| 上林县| 隆尧县| 博乐市| 峡江县| 敦煌市| 衡东县| 且末县| 砀山县| 昭平县| 锡林郭勒盟| 普洱| 哈密市| 珲春市| 微山县| 辽宁省| 九寨沟县| 南宫市| 云龙县| 达日县| 武胜县| 抚松县| 故城县| 九龙坡区| 靖西县| 连南|