11638Srgrimes#!/bin/sh -
21638Srgrimes#
31638Srgrimes# Copyright (c) 1991, 1993
41638Srgrimes#	The Regents of the University of California.  All rights reserved.
51638Srgrimes#
61638Srgrimes# Redistribution and use in source and binary forms, with or without
71638Srgrimes# modification, are permitted provided that the following conditions
81638Srgrimes# are met:
91638Srgrimes# 1. Redistributions of source code must retain the above copyright
101638Srgrimes#    notice, this list of conditions and the following disclaimer.
111638Srgrimes# 2. Redistributions in binary form must reproduce the above copyright
121638Srgrimes#    notice, this list of conditions and the following disclaimer in the
131638Srgrimes#    documentation and/or other materials provided with the distribution.
141638Srgrimes# 3. All advertising materials mentioning features or use of this software
151638Srgrimes#    must display the following acknowledgement:
161638Srgrimes#	This product includes software developed by the University of
171638Srgrimes#	California, Berkeley and its contributors.
181638Srgrimes# 4. Neither the name of the University nor the names of its contributors
191638Srgrimes#    may be used to endorse or promote products derived from this software
201638Srgrimes#    without specific prior written permission.
211638Srgrimes#
221638Srgrimes# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
231638Srgrimes# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
241638Srgrimes# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
251638Srgrimes# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
261638Srgrimes# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
271638Srgrimes# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
281638Srgrimes# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
291638Srgrimes# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
301638Srgrimes# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
311638Srgrimes# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
321638Srgrimes# SUCH DAMAGE.
331638Srgrimes#
341638Srgrimes#	@(#)tck	8.1 (Berkeley) 6/8/93
351638Srgrimes#
361638Srgrimes
371638Srgrimes# Look for default (and termcap-only?) capabilities.
381638Srgrimes# Defaults should be removed to save space.
391638Srgrimes
401638Srgrimesshowtc $* | \
411638Srgrimessed	-n				\
421638Srgrimes	-e 's/ bc=^H$/DEFAULT &/p'	\
431638Srgrimes	-e 's/ bc=\\h$/DEFAULT &/p'	\
441638Srgrimes	-e 's/ bc=\\10$/DEFAULT &/p'	\
451638Srgrimes	-e 's/ bc=\\010$/DEFAULT &/p'	\
461638Srgrimes	-e 's/ bl=^G$/DEFAULT &/p'	\
471638Srgrimes	-e 's/ bl=\\7$/DEFAULT &/p'	\
481638Srgrimes	-e 's/ bl=\\07$/DEFAULT &/p'	\
491638Srgrimes	-e 's/ bl=\\007$/DEFAULT &/p'	\
501638Srgrimes	-e 's/ cr=^M$/DEFAULT &/p'	\
511638Srgrimes	-e 's/ cr=\\r$/DEFAULT &/p'	\
521638Srgrimes	-e 's/ cr=\\15$/DEFAULT &/p'	\
531638Srgrimes	-e 's/ cr=\\015$/DEFAULT &/p'	\
541638Srgrimes	-e 's/ ff=^L$/DEFAULT &/p'	\
551638Srgrimes	-e 's/ ff=^L$/DEFAULT &/p'	\
561638Srgrimes	-e 's/ ff=\\14$/DEFAULT &/p'	\
571638Srgrimes	-e 's/ ff=\\014$/DEFAULT &/p'	\
581638Srgrimes	-e 's/ nl=^J$/DEFAULT &/p'	\
591638Srgrimes	-e 's/ nl=\\n$/DEFAULT &/p'	\
601638Srgrimes	-e 's/ nl=\\12$/DEFAULT &/p'	\
611638Srgrimes	-e 's/ nl=\\012$/DEFAULT &/p'	\
621638Srgrimes	-e 's/ ta=^I$/DEFAULT &/p'	\
631638Srgrimes	-e 's/ ta=\\t$/DEFAULT &/p'	\
641638Srgrimes	-e 's/ ta=\\11$/DEFAULT &/p'	\
651638Srgrimes	-e 's/ ta=\\011$/DEFAULT &/p'	\
661638Srgrimes					\
671638Srgrimes	-e 's/ bc$/TERMCAP ONLY &/p'	\
681638Srgrimes	-e 's/ bs$/TERMCAP ONLY &/p'	\
691638Srgrimes	-e 's/ dB$/TERMCAP ONLY &/p'	\
701638Srgrimes	-e 's/ dC$/TERMCAP ONLY &/p'	\
711638Srgrimes	-e 's/ dF$/TERMCAP ONLY &/p'	\
721638Srgrimes	-e 's/ dN$/TERMCAP ONLY &/p'	\
731638Srgrimes	-e 's/ dT$/TERMCAP ONLY &/p'	\
741638Srgrimes	-e 's/ dV$/TERMCAP ONLY &/p'	\
751638Srgrimes	-e 's/ EP$/TERMCAP ONLY &/p'	\
761638Srgrimes	-e 's/ HD$/TERMCAP ONLY &/p'	\
771638Srgrimes	-e 's/ kn$/TERMCAP ONLY &/p'	\
781638Srgrimes	-e 's/ ko$/TERMCAP ONLY &/p'	\
791638Srgrimes	-e 's/ LC$/TERMCAP ONLY &/p'	\
801638Srgrimes	-e 's/ ma$/TERMCAP ONLY &/p'	\
811638Srgrimes	-e 's/ ml$/TERMCAP ONLY &/p'	\
821638Srgrimes	-e 's/ mu$/TERMCAP ONLY &/p'	\
831638Srgrimes	-e 's/ nc$/TERMCAP ONLY &/p'	\
841638Srgrimes	-e 's/ NL$/TERMCAP ONLY &/p'	\
851638Srgrimes	-e 's/ nl$/TERMCAP ONLY &/p'	\
861638Srgrimes	-e 's/ ns$/TERMCAP ONLY &/p'	\
871638Srgrimes	-e 's/ OP$/TERMCAP ONLY &/p'	\
881638Srgrimes	-e 's/ pt$/TERMCAP ONLY &/p'	\
891638Srgrimes	-e 's/ UC$/TERMCAP ONLY &/p'	\
901638Srgrimes	-e 's/ xr$/TERMCAP ONLY &/p'	\
911638Srgrimes	-e 's/ xx$/TERMCAP ONLY &/p'	\
92