~ubuntu-branches/ubuntu/precise/vflib3/precise

« back to all changes in this revision

Viewing changes to ccv/mk-ccv-1

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta
  • Date: 2002-04-15 12:10:24 UTC
  • Revision ID: james.westby@ubuntu.com-20020415121024-cann32wucyfbq22f
Tags: upstream-3.6.12
ImportĀ upstreamĀ versionĀ 3.6.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
 
 
3
CS1=$1
 
4
EN1=`echo $2 | sed 's/,/ /g'`
 
5
CS2=$3
 
6
EN2=`echo $4 | sed 's/,/ /g'`
 
7
 
 
8
gzip -cd $5 | sed 's/#.*$//' | grep '^.' | awk '{print $1, $2 }' \
 
9
  | sort | ./mkcscv ${CS1} "${EN1}" ${CS2} "${EN2}" > $6
 
10
exit 0