标签: linux shell date time
我需要用while循环编写shell脚本,所以我这样做了,但是下一个问题是shell脚本需要创建包含用户列表的新文件,以及调用该脚本的日期和时间。
答案 0 :(得分:0)
快速入门的一个例子。这个POSIX兼容,因为我更喜欢$()反对。
$()
#!/bin/sh echo "$(date -u '+[%F %T]') Users: $(users)"
输出:
[2014-08-06 17:30:21] Users: user1 user2 user3 user4