#!/bin/sh


# id3 Tag from | to File script (id3tag.sh) v0.000 (NOT released)

# Copyright (C) 2000 Ralf Heiringhoff <ralf@freeze.rhwd.de>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc., 59
# Temple Place, Suite 330, Boston, MA 02111-1307 USA

# Set Filenames from id3 Tags / Set id3 Tags from Filenames
#
# -f set filename from id3 tag
# -t set id3 tag from filename (default)

echo -e "\n\n\t\tNOT working yet ...\n"
exit 0

while getops ":ft" opt; do
	case $opt in
		f ) process -a ;;
		t ) process -b ;;
		\?) echo -e "\nusage: id3tags.sh [-ft] [test|apply] ...\n"
		    exit 0
	esac
done

shift $(($OPTINT - 1))
