博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读书笔记--101个shell脚本--05
阅读量:6340 次
发布时间:2019-06-22

本文共 1809 字,大约阅读时间需要 6 分钟。

说到就要要尽量做到,每天一个脚本分析

废话不多说,首先是

The Code

#!/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下。

      本文转自hb_fukua  51CTO博客,原文链接:http://blog.51cto.com/2804976/591479,如需转载请自行联系原作者

你可能感兴趣的文章
微服务架构介绍和RPC框架对比
查看>>
Debian下使用OpenLDAP 管理端
查看>>
泛型排序器TComparer
查看>>
9个offer,12家公司,35场面试,从微软到谷歌,应届计算机毕业生的2012求职之路...
查看>>
创建符合标准的、有语意的HTML页面——ASP.NET 2.0 CSS Friendly Control Adapters 1.0发布...
查看>>
Adobe驳斥Flash过度耗电论 称HTML5更耗电
查看>>
No!No!No! It's not fashion!
查看>>
艰困之道中学到的经验教训
查看>>
互联网生态建设落地五大挑战——保险科技生态建设 ...
查看>>
进行短视频app开发工作时,可以加入它来保护青少年 ...
查看>>
25G DAC无源高速线缆和25G光模块之间的区别
查看>>
乐乐茶完成近2亿元Pre-A轮融资,祥峰投资领投
查看>>
clickhouse修改时区
查看>>
CSS_定位
查看>>
第二十四章:页面导航(六)
查看>>
百度、长沙加码自动驾驶,湖南阿波罗智行科技公司成立 ...
查看>>
10 个 Linux 中方便的 Bash 别名
查看>>
全新 DOCKER PALS 计划上线,带给您不一样的参会体验! ...
查看>>
Android开发之自定义View(二)
查看>>
python爬虫之微打赏(scrapy版)
查看>>