加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

Bash脚本听密钥按钮继续前进

发布时间:2020-12-15 18:50:20 所属栏目:安全 来源:网络整理
导读:所以,我想写一个bash脚本,这是一系列的步骤,并且将其称为“任务#”.但是,每个步骤只能完成,只要用户想要就可以运行. Do task1if keypressed stop task1 and move on #this is the part I need help with. There can be up to 10 of these move on steps. Do
所以,我想写一个bash脚本,这是一系列的步骤,并且将其称为“任务#”.但是,每个步骤只能完成,只要用户想要就可以运行.
Do task1
if keypressed stop task1 and move on #this is the part I need help with. There can be up to 10 of these move on steps. 
Do task2
...

kina喜欢顶它一直在做的东西,直到你打q相当,但是,我想继续下一件事

您可以使用带有选项-t和-n的read builtin命令
while :
do
    # TASK 1
    date
    read -t 1 -n 1 key

    if [[ $key = q ]]
    then
        break
    fi
done

# TASK 2
date +%s

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读