`
xu_wccq
  • 浏览: 131545 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

#!/bin/bash stty -echo while

阅读更多
sql 代码
 
  1. #!/bin/bash  
  2.   
  3. # none 1,2,3,15,20 signal  
  4. trap '' 1 2 3 15 20  
  5.   
  6. #clear screen ,close redisplay  
  7. clear  
  8. stty -echo  
  9.   
  10. #set password  
  11. echo -n "Enter your codeword: "  
  12. read secretcode  
  13. echo  
  14.   
  15. #confirm password  
  16. echo -n "Enter your codeword again: "  
  17. read same  
  18. echo  
  19. if [ $secretcode != $same ]  
  20.     then  
  21.         echo "Work on your short-term memory before using this code! "  
  22.         stty echo  
  23.         exit 1  
  24. fi  
  25.   
  26. #get user input  
  27. clear  
  28. echo -n "Enter the code word: "  
  29. read yourguess  
  30. echo  
  31.   
  32.   
  33. #only input is right codeword ,or loop forever  
  34. while [ "$secretcode" != "$yourguess" ]  
  35. do  
  36.     clear  
  37.     echo "secretcode: $secretcode \n yourguess: $yourguess"  
  38.     echo -n "Enter the code word: "  
  39.     read yourguess  
  40. done  
  41.   
  42. #input real password to continue  
  43. clear  
  44. echo "Back gain! "  
  45. stty echo  
  46. exit 0  
sql 代码
  1. #shell   
  2. #! /bin/bash  
  3. files=(`ls`) numfiles=`ls | wc -w`  
  4.   
  5. echo ${files[*]}  
  6. echo ${files[1]}  
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics