#!/bin/sh
#
# Copyright (C) 2007  Fredrik Åslund <fredrik@darkeye.net>
#
# This script 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 script 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 script; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#

#
# sv_tab format:
# <sv_km><tab><sv_kmUP><tab><sv_kmALT>
#
# sv_tab -> sv_km sv_kmUP sv_kmALT
#

tkm=$1
km=$2

[ -n "$2" ] || { echo "Usage: `basename $0` <tabbed keymap> <keymap>" ; exit 1 ; }

km1=$km
km2=${km}UP
km3=${km}ALT

cat $tkm | awk -F '\t' '{print $1}' > $km1
cat $tkm | awk -F '\t' '{print $2}' > $km2
cat $tkm | awk -F '\t' '{print $3}' > $km3


