1、编写一个shell 脚本程序,打印出班级总成绩排名在前3 名(按总成绩递增)学生的姓名、学号和总成绩。打印输出的格式如下(姓名、学号、第1、2、3 门课程成绩及总成绩):
zhang san 23 40 70 60 170
wang wu 31 60 60 80 200
li si 2 100 50 90 240
学生成绩文件自己创建。
2、编写一个shell 脚本程序,显示当前目录中子目录的名称
3、编写一个menu 的shell脚本程序,执行后的界面为:
Number Name For Linux Menu
1 exit leave menu or return
2 menu goto another local menu
3 vi deit a file
4 mail read a mail
5 send send mail to someone
6 cal see your calendar
7 who see who is on the system
8 ls list the files in this directory
9 cat display a file on the screen
Please enter a number or a name for the action you wish:
要求有清屏功能,能正确地执行各项命令并显示。
1