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.
这是一个旧的计算机类项目,我已经完成了,现在想知道是否有更好的做事方式。
我们曾经编写了一个约会.sh 程序,我在其中使用一种算法解决了比较时间,该算法将时间转换为您可以比较今天和明天的某个数字,当然会发生什么是它计算出明天更大,而不是今天,您可以通过比较所述转换时间,根据是否采用日期/小时来安排约会。
我想知道是否有一个操作系统命令来告诉 linux 中的 bash 时间?谢谢!
date告诉你当前时间。您可以使用命令行参数来指定格式,请参阅man date.
date
man date
例如对于 UNIX 时间戳(您可以轻松比较的数字),您可以调用date +%s.
date +%s