A Library of Efficient Data Types and Algorithms,封装了常用的ADT及其相关算法的软件包

源代码在线查看: license.sh

软件大小: 6255 K
上传用户: xiao11tian
关键词: Algorithms Efficient Library Types
下载地址: 免注册下载 普通下载 VIP

相关代码

				#!/bin/sh 								rm -f .license								cat license.txt								printf "Do you wish to continue ? "								answer=none								while [ $answer = none ]; do				  read a				  if [ "$a" = "yes" -o "$a" = "Yes" ]; then				     answer=yes				  fi				  if [ "$a" = "no"  -o "$a" = "No"  ]; then				     answer=no				  fi				  if [ $answer = none ]; then				    printf "\nPlease type yes or no : "				  fi				done												if [ $answer = no ]; then				   echo " "				   echo "Installation stopped."				   echo " "				else				   echo " "				   echo "Installation continues ..."				   echo " "				   touch .license				fi											

相关资源