Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为一个 linux 类编写一个 shell 脚本,但无法确定如何将用户输入应用于日历。我正在从用户那里读取月份和年份,并且需要显示带有指定月份和年份的日历。
我不确定如何让 cal 显示输入的月份和年份?任何帮助都是极好的。
这个例子有帮助吗?
#!/bin/bash month=$1 year=`date +%Y` cal $month $year
获取命令行参数设置月份
使用 date 命令设置年份
呼叫校准