Linux Shell实现人机交互


Linux Shell实现人机交互
 
Shell代码    www.2cto.com  
while true;do  
    stty -icanon min 0 time 100  
    echo -n "Automatic execute ten seconds after,Are you sure you want to start the task(yes or no)?"  
    read Arg  
    case $Arg in  
        Y|y|YES|yes)  
          break;;  
        N|n|NO|no)  
          exit;;  
        "")  #Autocontinue  
          break;;  
    esac  
done  
   
echo  
echo "others function..."  

相关内容

    暂无相关文章