linux shell脚本输入任意三个数代表年月日
时间: 2023-06-28 20:12:22 浏览: 120
shell 计算日期
4星 · 用户满意度95%
好的,你可以参考以下脚本:
```
#!/bin/bash
echo "请输入年份:"
read year
echo "请输入月份:"
read month
echo "请输入日期:"
read day
echo "您输入的日期是:$year 年 $month 月 $day 日"
```
这个脚本会提示用户输入年份、月份和日期,并将这三个值输出到终端上。你可以根据自己的需求对这个脚本进行修改。
阅读全文