我正在尝试使用以下命令找出用户的空闲时间,但是空闲时间以秒,小时或天等所有格式显示。如何更改它只能在几秒钟内始终显示。
w | tr -s " " | cut -d" " -f1,5 | tail -n+3
结果
testuser 10days
ec2-user 3.00s
有没有一种方法可以在几秒钟内显示10天? 我看到一个带有答案的链接here,但使用的是我不想使用的时代。
答案 0 :(得分:1)
这是一个bash解决方案:
WishSeconds () {
# PARM 1: 'w' command idle time 44.00s, 5:10, 1:28m, 3days, etc.
# 2: Variable name (no $ is used) to receive idel time in seconds
# NOTE: Idle time resets to zero when user types something in terminal.
# A looping job calling a command doesn't reset idle time.
local Wish Unit1 Unit2
Wish="$1"
declare -n Seconds=$2
# Leading 0 is considered octal value in bash. Change ':09' to ':9'
Wish="${Wish/:0/:}"
if [[ "$Wish" == *"days"* ]] ; then
Unit1="${Wish%%days*}"
Seconds=$(( Unit1 * 86400 ))
elif [[ "$Wish" == *"m"* ]] ; then
Unit1="${Wish%%m*}"
Unit2="${Unit1##*:}"
Unit1="${Unit1%%:*}"
Seconds=$(( (Unit1 * 3600) + (Unit2 * 60) ))
elif [[ "$Wish" == *"s"* ]] ; then
Seconds="${Wish%%.*}"
else
Unit1="${Wish%%:*}"
Unit2="${Wish##*:}"
Seconds=$(( (Unit1 * 60) + Unit2 ))
fi
} # WishSeconds
WishSeconds "20days" Days ; echo Passing 20days: $Days
WishSeconds "1:10m" Hours ; echo Passing 1:10m: $Hours
WishSeconds "1:30" Mins ; echo Passing 1:30: $Mins
WishSeconds "44.20s" Secs ; echo Passing 44.20s: $Secs
Passing 20days: 1728000
Passing 1:10m: 4200
Passing 1:30: 90
Passing 44.20s: 44
代替使用:
w | tr -s " " | cut -d" " -f1,5 | tail -n+3
您可以砍掉尾巴并使用:
w -h | tr -s " " | cut -d" " -f1,5
这将为您删除标题。我做同样的事情,并且使用短格式(没有CPU统计信息)和IP地址而不是主机名,所以我使用:
w -ish | tr -s " " | cut -d" " -f1,5
使用man w
获取更多参数详细信息。