⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainprog

📁 UNIX[1].shell范例精解(第4版)_code
💻
字号:
#!/bin/bash# Scriptname: mainprog# This is the main script that will call the function, addon# datafile=$HOME/bourne/datafile datafile=./datafile source dbfunctions   	# The file is loaded into memory if [ ! -e $datafile ] then	echo "$(basename $datafile) does not exist" >&2	exit 1fiecho "Select one: " 	cat <<EOF		[1] Add info		[2] Delete info 		[3] Update info		[4] Exit 	EOF	read choice 	case $choice in		1)	addon       # Calling the addon function				;; 		2)	delete      # Calling the delete function				;;		3)	update 				;;		4) 			echo Bye 			exit 0				;; 		*)	echo Bad choice			exit 2				;;	esac	echo Returned from function call 	echo The name is $name     	# Variable set in the function are known in this shell. done

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -