在 shell 脚本中,n 秒后关闭显示

在 shell 脚本中,n 秒后关闭显示
#!/bin/sh
(
time=$( zenity --scale --min-value=0 --max-value=20 --text="Pls Select Time in(s)")
)
&& sleep $time && xset dpms force off

我想在 n 秒后关闭显示,但这不起作用...请专家提供建议...

答案1

OP写道:

刚刚意识到这是一个非常小的语法错误:

( time=$(zenity --scale --min-value=0 --max-value=20 --text="Pls Select Time in(s)") && sleep $time && xset dpms force off )

相关内容