使用shell编写时钟(tput与date用法)

发布时间:2019-12-07编辑:脚本学堂
有关用shell脚本编写的简单时钟代码,学习下tput与date命令的用法,需要的朋友参考下。

在终端显示一个简单时钟。格式是“年--月--日 时:分:秒 星期” 主要适用tput用来控制鼠标位置和linuxjishu/14052.html target=_blank class=infotextkey>date命令获取时间

tput命令参数介绍:
 

tput civis :用来隐藏光标
tput cols :显示当前所在的列
tput lines :显示当前所在的行
tput cup lines cols : 将光标移动到第lines行,第cols列
tput setb no :设置终端背景色。 no的取值稍后介绍
tput setf no : 设置文本的颜色。no的取值稍后介绍
tput ed :删除当前光标到行尾的内容
no的取值:0:黑色、1:蓝色、2:绿色、3:青色、4:红色、5:洋红色、6:黄色、7:白色

更多内容请使用 man tput 查看
date命令参数介绍
 

%H :小时(0..23)%I : 小时(01..12)
%M : 分钟(0..59)
%p : 显示本地时段“上午”或 “下午”
%r : 直接显示时间 (12 小时制,格式为 hh:mm:ss [AP]M)
%s : 从 1970 年 1 月 1 日 00:00:00 UTC 到目前为止的秒数
%S : 秒(00..61)
%X : 相当于 %H:%M:%S
%a : 星期几 (Mon..Sun)%A : 星期几 (Monday..Sunday)
%b : 月份 (Jan..Dec)%B : 月份 (January..December)
%c : 直接显示日期与时间
%d : 日 (01..31)%D : 直接显示日期 (mm/dd/yy)
%j : 一年中的第几天 (001..366)
%m : 月份 (01..12)
%x : 直接显示日期 (mm/dd/yy)
%y : 年份的最后两位数字 (00.99)%Y : 完整年份 (0000..9999)

例子:
 

复制代码 代码示例:
#!/bin/bash
tput civis 
while [ 1 ] 
do 
nonth=$(date +%B) 
case "$nonth" in 
   January)  nonth=1;; 
   February)  nonth=2;; 
   March)  nonth=3;; 
   April)  nonth=4;; 
   May)  nonth=5;; 
   June)  nonth=6;; 
   July)  nonth=7;; 
   August)  nonth=8;; 
   September)  nonth=9;; 
   October)  nonth=10;; 
   November)  nonth=11;; 
   December)  nonth=12;; 
esac 
   tput clear 
   tput cup 3 10 
echo $(date +%Y)--$nonth--$(date +%d) $(date +%H):$(date +%M):$(date +%S) $(date +%A) 
sleep 1 
 
done