linux-tutorial/codes/shell/基本脚本/显示时间和登录者.sh
2019-10-29 18:22:19 +08:00

14 lines
200 B
Bash

#!/usr/bin/env 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