- 论坛徽章:
- 0
|
初级菜鸟求助(三)
in Linux,bash:- echo -n "Please input the YEAR of your friend's birthday:"
- read year
- echo -n "Please input the MONTH of your friend's birthday:"
- read month
- echo -n "Please input the DAY of your friend's birthday:"
- read day
- #cal $month $year
- echo "The day of the week is "$(cal $month $year | grep $day|awk '{if($1 == '"$day"') {print "Sun"} else
- {if($2 == '"$day"') {print "Mon"} else
- {if($3 == '"$day"') {print "Tue"} else
- {if($4 == '"$day"') {print "Wed"} else
- {if($5 == '"$day"') {print "Thu"} else
- {if($6 == '"$day"') {print "Fri"} else
- {if($7 == '"$day"') {print "Sat"}}}}}}}}')
复制代码 结果:- Please input the YEAR of your friend's birthday:2003
- Please input the MONTH of your friend's birthday:09
- Please input the DAY of your friend's birthday:15
- The day of the week is Mon
复制代码 |
|