国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > Linux Shell > 正文

shell腳本nicenumber實現代碼

2020-07-27 19:01:35
字體:
來源:轉載
供稿:網友

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 valuesTD="," # thousands delimiter, to separate every three digitswhile getopts "d:t:" opt; do case $opt in  d ) DD="$OPTARG"  ;;  t ) TD="$OPTARG"  ;; esacdoneshift $(($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 0finicenumber $1 1     # second arg forces nicenumber to 'echo' outputexit 0

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 太原市| 呈贡县| 江油市| 津市市| 逊克县| 兰坪| 孟村| 灵川县| 和顺县| 新乡市| 雅江县| 朝阳区| 常州市| 乌拉特中旗| 静海县| 凌海市| 叶城县| 关岭| 平利县| 阳春市| 贵德县| 新田县| 庆阳市| 双峰县| 西和县| 吐鲁番市| 肥东县| 册亨县| 罗城| 朔州市| 江山市| 廉江市| 卫辉市| 杭锦后旗| 贵溪市| 隆安县| 五指山市| 安平县| 嵊州市| 本溪市| 潜山县|