/usr/share/gap/pkg/ctbllib/init.g is in gap-character-tables 1r1p3-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #############################################################################
##
#W init.g GAP 4 package `ctbllib' Thomas Breuer
##
#H @(#)$Id: init.g,v 1.14 2003/11/14 08:50:25 gap Exp $
##
#Y Copyright (C) 2001, Lehrstuhl D fuer Mathematik, RWTH Aachen, Germany
##
if IsBound( GAPInfo ) then
# We want the library of tables of marks to be loaded if it is installed,
# the interface is part of the character table library.
LoadPackage( "tomlib" );
#T LoadPackage( "gpisotyp" );
# Read the declaration part.
ReadPackage( "ctbllib", "gap4/ctadmin.tbd" );
ReadPackage( "ctbllib", "gap4/construc.gd" );
ReadPackage( "ctbllib", "gap4/ctblothe.gd" );
ReadPackage( "ctbllib", "gap4/test.gd" );
else
# GAP 3.4.4
ReadPkg( "ctbllib", "gap3/ctadmin" );
fi;
#############################################################################
##
#E
|