做实验时碰的到一道shell编程题:输入一个人的出生日期,计算此人今年多少岁,并计算今天距此人今年生日还有多少天本来想偷懒百度抄一下的结果翻了几页都没有, 算了还是自己写吧脚本很简单, 主要是用date命令 #!/bin/bash #create By Merack #[email protected] #get the current year, month, day currentYear=`date +"%Y"` currentMonth=`date +"%m"` currentDay=`date +"%d"` #c…