使用CSH Shell脚本

时间:2018-10-09 01:14:59

标签: csh spacebars keystroke

我有在后台运行的程序,仅当ID不匹配时才需要停止使用SPACEBAR键。 我正在使用ascii方法发送空格键。但是,发送SPACEBAR的代码不起作用。我使用csh shell脚本。请帮忙。

                #!/bin/csh -x
                set id = "Y34Y60"
                set file_ID = "Y60"
                set check_id = `echo $id | grep -c $file_ID`
                    if ( $check_id != 0 ) then
                    echo "okay"
                else
                    echo "ID NOT TALLY!!!, Please immideate STOP"
                    sleep 30
                    # send SPACEBAR key to stop
                    printf '\x20' 
                    exit
                endif

0 个答案:

没有答案