shell script respond to keypress

后端 未结 5 1597
逝去的感伤
逝去的感伤 2020-12-06 00:25

I have a shell script that essentially says something like

while true; do
    read -r input
    if [\"$input\" = \"a\"]; then 
        echo \"hello world\"          


        
5条回答
  •  天涯浪人
    2020-12-06 00:49

    Another way of doing it, in a non blocking way(not sure if its what you want). You can use stty to set the min read time to 0.(bit dangerous if stty sane is not used after)

    stty -icanon time 0 min 0
    

    Then just run your loop like normal. No need for -r.

    while true; do
        read input
    
        if ["$input" = "a"]; then 
            echo "hello world"           
        fi
    done
    

    IMPORTANT! After you have finished with non blocking you must remember to set stty back to normal using

    stty sane
    

    If you dont you will not be able to see anything on the terminal and it will appear to hang.

    You will probably want to inlcude a trap for ctrl-C as if the script is quit before you revert stty back to normal you will not be able to see anything you type and it will appear the terminal has frozen.

    trap control_c SIGINT
    
    control_c()
    {
        stty sane
    }
    

    P.S Also you may want to put a sleep statement in your script so you dont use up all your CPU as this will just continuously run as fast as it can.

    sleep 0.1
    

    P.S.S It appears that the hanging issue was only when i had used -echo as i used to so is probably not needed. Im going to leave it in the answer though as it is still good to reset stty to its default to avoid future problems. You can use -echo if you dont want what you have typed to appear on screen.

提交回复
热议问题