1.显示当前时间,显示格式为hh:mm:ss,并保存到文件time.txt中
date +%H:%M:%S ##按照格式输出时间
tee ##复制输出
| ##管道,管道前的输出作为管道后的输入
2.显示文件/etc/passwd文件的第15到18行
3.显示/bin中文件包含大写字母的文件,保存到bin_westos_file.txt文件中,并统计个数显示屏幕
4.在student用户下查找/etc下passwd文件,屏蔽错误输
5.在student用户下查找/etc下passwd文件,正确输出保存到/tmp/westos.out,错误输出保存到/tmp/westos.err
6.在student用户下查找/etc下passwd文件,显示命令输出并保存输出到/tmp/westos.all中