所以,我想写一个bash脚本,这是一系列的步骤,并且将其称为“任务#”.但是,每个步骤只能完成,只要用户想要就可以运行.
@H_301_8@
您可以使用带有选项-t和-n的read builtin命令
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相当,但是,我想继续下一件事
while : do # TASK 1 date read -t 1 -n 1 key if [[ $key = q ]] then break fi done # TASK 2 date +%s