用Shell 语言编制一Shell 程序,该程序在用户输入年、月之后,自动打印数出该年该月的日历。

操作步骤如下:

  1. 在vi/vim编辑器下创建Shell脚本:cal_month_year.sh
  2. 文件主要命令行:
#!/bin/bash
#Show cal month of year

echo -n "Please input the month:"
read month

echo -n "Please inout the year:"
read year

cal $month $year

  1. 赋予权限777
  2. 然后执行:cal_month_year.sh

用Shell 语言编制一Shell 程序,该程序在用户输入年、月之后,自动打印数出该年该月的日历。_第1张图片
请帮顶 / 评论点赞!你们的鼓励是我写作的最大动力!

你可能感兴趣的:(Linux,linux,shell)