Deleted Added
sdiff udiff text old ( 97049 ) new ( 98503 )
full compact
1#! /bin/sh
2# $Id: MKkey_defs.sh,v 1.7 2002/01/13 01:36:32 tom Exp $
3##############################################################################
4# Copyright (c) 2001,2002 Free Software Foundation, Inc. #
5# #
6# Permission is hereby granted, free of charge, to any person obtaining a #
7# copy of this software and associated documentation files (the "Software"), #
8# to deal in the Software without restriction, including without limitation #
9# the rights to use, copy, modify, merge, publish, distribute, distribute #
10# with modifications, sublicense, and/or sell copies of the Software, and to #

--- 28 unchanged lines hidden (view full) ---

39
40data=data$$
41pass1=pass1_$$
42pass2=pass2_$$
43pass3=pass3_$$
44pass4=pass4_$$
45trap 'rm -f $data pass[1234]_$$' 0 1 2 5 15
46sed -e 's/[ ]\+/ /g' < $DATA |sort -n +5 >$data
47
48cat <<EOF
49/*
50 * These definitions were generated by $0 $DATA
51 */
52EOF
53
54# KEY_RESIZE
55maxkey=410
56
57for pass in 1 2 3 4
58do
59
60output=pass${pass}_$$
61
62${AWK-awk} >$output <$data '
63function print_cols(text,cols) {

--- 99 unchanged lines hidden ---