linux shell实现转换输入日期的格式
程序员文章站
2022-08-26 16:22:24
对于用户输入日期的合法性检验,是个很重要的问题,这个例子是简单得取得用户输入的日期,并转换为相应的格式,但不完美,原因请看后文。
#!/bin/sh
# nor...
对于用户输入日期的合法性检验,是个很重要的问题,这个例子是简单得取得用户输入的日期,并转换为相应的格式,但不完美,原因请看后文。
#!/bin/sh # normdate -- normalizes month field in date specification # to three letters, first letter capitalized. a helper # function for script #7, valid-date. exits w/ zero if no error. monthnotoname() { # sets the variable 'month' to the appropriate value case $1 in 1 ) month="jan" ;; 2 ) month="feb" ;; 3 ) month="mar" ;; 4 ) month="apr" ;; 5 ) month="may" ;; 6 ) month="jun" ;; 7 ) month="jul" ;; 8 ) month="aug" ;; 9 ) month="sep" ;; 10) month="oct" ;; 11) month="nov" ;; 12) month="dec" ;; * ) echo "$0: unknown numeric month value $1" >&2; exit 1 esac return 0 } ## begin main script if [ $# -ne 3 ] ; then echo "usage: $0 month day year" >&2 echo "typical input formats are august 3 1962 and 8 3 2002" >&2 exit 1 fi if [ $3 -lt 99 ] ; then echo "$0: expected four-digit year value." >&2; exit 1 fi if [ -z $(echo $1|sed 's/[[:digit:]]//g') ]; then monthnotoname $1 else # normalize to first three letters, first upper, rest lowercase month="$(echo $1|cut -c1|tr '[:lower:]' '[:upper:]')" month="$month$(echo $1|cut -c2-3 | tr '[:upper:]' '[:lower:]')" fi echo $month $2 $3 exit 0
脚本分析:
1) 定义了函数monthnotoname(),用来转换用户输入的数字月份
2)首先判断参数的个数是否为3个,其次判断年份,接着是转换月份格式。
3)if [ -z $(echo $1|sed 's/[[:digit:]]//g') ]; 这句话有点意思,是如果$1被执行sed替换的话,即$1中存在数字
则执行函数monthnotoname(),来转换数字月份。
4)month="$(echo $1|cut -c1|tr '[:lower:]' '[:upper:]')"
month="$month$(echo $1|cut -c2-3 | tr '[:upper:]' '[:lower:]')"
将输入的字符月份转换为标准格式。
5)这个脚本最大的缺陷是虽然将日期的格式转换了,但不能检测过滤不存在的日期。
下一篇: Istio Sidecar代理的使用
推荐阅读
-
正则表达式实现将MM/DD/YYYY格式的日期转换为YYYY-MM-DD格式
-
linux shell实现获取用户输入指定范围的单个字符的两种方法
-
linux命令实现音频格式转换和拼接的方法
-
C#实现日期格式转换的公共方法类实例
-
linux shell实现转换输入日期的格式
-
linux shell实现判断输入的数字是否为合理的浮点数
-
ACM日期计算(C++实现):输入一个日期,格式如:2010 10 24 ,判断这一天是这一年中的第几天
-
Shell脚本中实现把输入的密码转换为*(星号)的方法
-
linux shell在while中用read从键盘输入的实现
-
linux shell txt转换成html的实现代码