学生信息脚本
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-03
学生信息脚本
本脚本实现学生信息录入、查询、删除.学生信息以姓名、学号、地址、学科为例.
输入1为信息录入,2为查询,3为删除,0为退出程序.
Student Information
*************************
1,insert information
2,select information
3,delete information
0,exit
**************************
please type in the option :
操作:
vi 007,编辑007文件,如下:
#! /bin/bash #ex. while true do clear tput cup 2 28 echo "Student Information" tput cup 3 24 echo "***********************" tput cup 4 24 echo "1,insert information" tput cup 5 24 echo "2,select information" tput cup 6 24 echo "3,delect information" tput cup 7 24 echo "0,exit" tput cup 8 24 echo "***********************" tput cup 9 24 echo -n "please type in the option:" read AA case $AA in 1)tput cup 10 24 echo -n "SID:" read A tput cup 11 24 echo -n "Name:" read B tput cup 12 24 echo -n "Address:" read C tput cup 13 24 echo -n "Course:" read D tput cup 14 24 echo -n "insert the record[y/n]?" read YY case $YY in y)echo $A:$B:$C:$D >>list tput cup 15 24 echo -n "insert ok" ;; n)tput cup 15 24 echo -n "error,please retry!" ;; esac ;; 2)tput cup 10 24 echo -n "please type in the SID:" read BB if grep ^${BB}: list >/dev/null 2>&1 then tput cup 11 24 grep ^${BB}: list else tput cup 11 24 echo -n "Not Found!" fi ;; 3)tput cup 10 24 echo -n "please type in the SID:" read CC tput cup 11 24 echo -n "delete the record[y/n]" read NN case $NN in y)grep -v $CC list >list.tmp cat list.tmp >list tput cup 12 24 echo -n "delete ok" ;; n)tput cup 12 24 echo -n "delete fail!" ;; *)tput cup 12 24 echo -n "errorr,please retry!" ;; esac ;; 0)exit ;; *)tput cup 10 24 echo -n "error,please retry!" ;; esac read FFF done |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于学生信息脚本的所有评论