linux-tutorial/codes/shell/示例脚本/基本脚本/显示时间和登录者.sh

13 lines
191 B
Bash
Raw Normal View History

2019-05-10 11:17:57 +08:00
#!/bin/bash
#This script displays the date and who's logged on
#如果想在同一行显示
#echo -n -e 'The time is:\n\n'
echo The time is:
date
echo The one who has been logged is:
who