Chinaunix首页 | 论坛 | 博客
  • 博客访问: 439358
  • 博文数量: 184
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 594
  • 用 户 组: 普通用户
  • 注册时间: 2013-12-17 16:24
个人简介

我是一只小小鸟

文章分类

全部博文(184)

文章存档

2016年(1)

2015年(55)

2014年(127)

2013年(1)

分类: LINUX

2014-04-27 18:29:11


点击(此处)折叠或打开

  1. #!/bin/bash
  2. while :
  3. do
  4. tput clear
  5. cat << OUTPUT
  6. ********************************************
  7. * 1> Next step; *
  8. * 2> Get back; *
  9. * 3> Exit; *
  10. * 4> Completed; *
  11. * 5> Reset. *
  12. ********************************************
  13. OUTPUT
  14. echo -e -n "Please input the step<1,2,3,4,5>\n\t"
  15. read value
  16. case $value in
  17. 1)echo execute the next step;
  18. read value
  19. continue
  20. ;;
  21. 2)echo forward;
  22. read value
  23. continue
  24. ;;
  25. 3)exit 0
  26. ;;
  27. 4)echo The installation is completed!
  28. read value
  29. continue
  30. ;;
  31. 5)echo restoration completed!
  32. read value
  33. continue
  34. ;;
  35. esac
  36. read value
  37. done


阅读(726) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~