CD管理系统(Shell)

参考《linux程序设计(第四版)》


<span style="font-size:14px;">#!/bin/bash

menu_choice=""
current_cd=""
title_file="title.cdb"
tracks_file="tracks.cdb"
temp_file=./temp/cdb.$$
trap 'rm -f $temp_file' EXIT

get_return()
{
	echo -n "press return: "
	read key
	return 0
}

get_confirm()
{
	echo -n "Are you sure?: "
	read key
	
	while true
	do
		case "$key" in
			Y | y | yes | YES)
				return 0;;
			N | n | no | NO)
				return 1;;
			*) echo "please enter yes or no";;
		esac
        read key
	done
}

set_menu_choice()
{
	clear
	echo "Option :-"
	echo
	echo "a) Add new CD"
	echo "f) Find CD"
	echo "c) Count the CDs and tracks in the catalog"
        echo "b) list CDs"
	if [ "$cdcatnum" != "" ]
	then
		echo "l) List tracks on $cdtitle"
		echo "r) Remove $cdtitle"
		echo "u) Update teack infomat for $cdtitle"
	fi
	echo "q) Quit"
	echo
	echo -n "Please enter choice the press return: "
	read menu_choice
	return
}

insert_title()
{
	echo $* >> $title_file
	return
}

insert_track()
{
	echo $* >> $tracks_file
	return
}

add_record_tracks()
{
	echo "Enter track information for this CD"
	echo "When no more tracks enter q"
	cdtrack=1
	cdtitle=""

	while [ "$cdtitle" != "q" ]
	do
		echo -n "Track $cdtrack track title?: "
		read tmp
		cdtitle=${tmp%%,*}
		if [ "$tmp" != "$cdtitle" ]
		then
			echo "Sorry,no commas allowed"
			continue
		fi
		if [ -n "$cdtitle" ]
		then
			if [ "$cdtitle" != "q" ]
			then
				insert_track $cdcatnum,$cdtrack,$cdtitle,
			fi
		else
			cdtrack=$((cdtrack-1))
		fi
		cdtrack=$((cdtrack+1))
	done
}

remove_records()
{
	if [ -z "$cdcatnum" ]
	then
		echo "You must select CD frist"
		find_cd n
	fi
	if [ -n "$cdcatnum" ]
	then
		echo "You are about to delete $cdtitle"
		get_confirm && {
		grep -v "^${cdcatnum}," $title_file > $temp_file
		mv $temp_file $title_file
		grep -v "^${cdcatnum}," $tracks_file > $temp_file
		mv $temp_file $tracks_file
		cdcatnum=""
		echo Entry removed
	}
	get_return
        fi
        return
}

add_records()
{
	echo -n "Enter catalog name: "
	read tmp
	cdcatnum=${tmp%%,*}

	echo -n "Enter title: "
	read tmp
	cdtitle=${tmp%%,*}

	echo -n "Enter  type: "
	read tmp
	cdtype=${tmp%%,*}

	echo -n "Enter  rlist/comper: "
	read tmp
	cdac=${tmp%%,*}

	echo About to add new entry
	echo "$cdcatnum $cdtitle $cdtype $cdac"

	if get_confirm
	then
		insert_title $cdcatnum,$cdtitle,$cdtype,$cdac,
		add_record_tracks
	else
		remove_records
	fi
	return
}

list_tracks()
{
	if [ "$cdcatnum" = "" ]
	then
		echo no CD selected yet
		return
	else
		grep "^${cdcatnum}," $tracks_file > $temp_file
		num_tracks=$(wc -l $temp_file)
		if [ "$num_tracks" = "0" ]
		then
			echo "no tracks found for $cdtitle"
		else {
			echo
			echo "$cdtitle :-"
			echo
			cut -f 2- -d , $temp_file
			echo
		     } | ${PAGER:-more}
	       fi
        fi
	get_return
	return
}

find_cd()
{
	if [ "$1" = "n" ]
	then
		asklis=n
	else
		asklis=y
	fi

	cdcatnum=""
	echo -n "Enter a string to search for in the CD titles: "
	read searchstr
	if [ "$searchstr" = "" ]
	then
		return 0
	fi

	grep "$searchstr" $title_file > $temp_file
	set $(wc -l $temp_file)
	linesfound=$1

	case "$linesfound" in
		0) echo "Sorry,nothing found!"
			get_return
			return 0
			;;
		1) ;;
		2) echo "Sorry, not unique."
		   echo "Found the following"
		   cat $temp_file
		   get_return
		   return 0
        esac
	IFS=","
	read cdcatnum cdtitle cdtype cdac < $temp_file
	IFS=""

	if [ -z "$cdcatnum" ]
	then
		echo "Sorry, could not extract catalog field from $temp_file"
		get_return
		return 0
	fi

	echo
	echo Catalog number: $cdcatnum
	echo Title: $cdtitle
	echo Type: $cdtype
	echo cdas: $cdac
	echo

	get_return

	if [ "$asklist" = "y" ]
	then
		echo -n "View track this CD?: "
		read key
		if [ "$key" = "y" ]
		then
			list_track
			echo
	       fi
        fi
	return 1
}

update_cd()
{
        echo Updat_cd
	if [ -z "$cdcatnum" ]
	then
		echo "You must select a CD first"
		find_cd n
	fi
	if [ -n "$cdcatnum" ]
	then
		echo "Current tracks are :-"
		list_tracks
		echo
		echo "This will re-enter the tracks for $cdtitle"
		get_confirm && {
		grep -v "^${cdcatnum}," $tracks_file > $temp_file
		mv $temp_file $tracks_file
		echo
		add_record_tracks
               	}
       fi
       return
}

count_cds()
{
	set $(wc -l $title_file)
	num_titles=$1
	set $(wc -l $tracks_file)
	num_tracks=$1
	echo found $num_titles cds,with a total of $num_tracks tracks
	get_return
	return
}


rm -f $temp_file
if [ ! -f $title_file ]
then
	touch $title_file
fi

if [ ! -f $tracks_file ]
then
	touch $tracks_file
fi

clear

echo
echo
echo
echo "Mini CD manager"
sleep 1

quit=n

while [ "$quit" != "y" ]
do
	set_menu_choice
	case "$menu_choice" in
		a) add_records;;
		r) remove_records;;
		f) find_cd y;;
		u) update_cd;;
		c) count_cds;;
		l) list_tracks;;
		b) echo
		   more $title_file
		   echo
		   get_return;;
	   q | Q) quit=y;;
	       *) echo "Sorry,choice not recognized";;
       esac
done

       rm -f $temp_file
       echo "Finished"
       exit 0



 </span>


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值