2017 3 15 - Zhengyue34/itsma-shell GitHub Wiki

命令 作用
man [command] 查询command功能
info [command] 查询command功能
whatis [command] 查询command功能
help [command] 内置命令查询command功能
[command] --help 外部命令查询command功能
date kernel时间(系统时间)
hwclock 主板电池驱动的时间(硬件时间)
cal 日历查看
cd - 切换当前目录与前个目录
hash 缓存
清空缓存?
hwclock -w  #硬件时间跟随系统时间    
hwclock -s  #系统时间跟随硬件时间

练习:
1.echo是外部命令还是内部命令?作用?
type echo
help echo
2.如何换行显示"this year is 2013. today is 15"
date +"this year is %Y%ntoday is %d"