]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/MKkeys_list.sh
ncurses 6.1 - patch 20190728
[ncurses.git] / ncurses / tinfo / MKkeys_list.sh
1 #! /bin/sh
2 # $Id: MKkeys_list.sh,v 1.6 2019/03/02 22:47:33 tom Exp $
3 ##############################################################################
4 # Copyright (c) 2001-2017,2019 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 #
11 # permit persons to whom the Software is furnished to do so, subject to the  #
12 # following conditions:                                                      #
13 #                                                                            #
14 # The above copyright notice and this permission notice shall be included in #
15 # all copies or substantial portions of the Software.                        #
16 #                                                                            #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
20 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
22 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
23 # DEALINGS IN THE SOFTWARE.                                                  #
24 #                                                                            #
25 # Except as contained in this notice, the name(s) of the above copyright     #
26 # holders shall not be used in advertising or otherwise to promote the sale, #
27 # use or other dealings in this Software without prior written               #
28 # authorization.                                                             #
29 ##############################################################################
30 #
31 # MKkey_defs.sh -- generate list of function-keys for terminfo database
32 #
33 # Author: Thomas E. Dickey 2001
34 #
35 # Extract function-key names from the Caps file
36 #
37 : ${AWK-awk}
38 if test $# != 0
39 then
40         DATA="$*"
41 else
42         DATA=../../include/Caps
43 fi
44
45 data=data$$
46 trap 'rm -f $data' EXIT INT QUIT TERM HUP
47 cat $DATA | sed -e 's/[ ][      ]*/     /g' >$data
48
49 cat <<EOF
50 # These definitions were generated by $0 $DATA
51 KEY_BREAK
52 KEY_SRESET
53 KEY_RESET
54 KEY_RESIZE
55 EOF
56
57 ${AWK-awk} <$data '
58 /^#/            {next;}
59 /^capalias/     {next;}
60 /^infoalias/    {next;}
61 /^userdef/      {next;}
62
63 $5 != "-" {
64                 if (substr($5, 1, 4) == "KEY_" ) {
65                         printf "%s      %s\n", $5, $1
66         }
67 }
68 '