Lines Matching +full:page +full:- +full:based

5 - Bug Tracker: <https://bugs.astron.com/>
6 - Build Status: <https://travis-ci.org/file/file>
7 - Download link: <ftp://ftp.astron.com/pub/file/>
8 - E-mail: <christos@astron.com>
9 - Fuzzing link: <https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:file>
10 - Home page: https://www.darwinsys.com/file/
11 - Mailing List archives: <https://mailman.astron.com/pipermail/file/>
12 - Mailing List: <file@astron.com>
13 - Public repo: <https://github.com/file/file>
14 - Test framework: <https://github.com/file/file-tests>
30 library, and the re-write of the file command in terms of that
38 megachanges including byte-order independence.
44 UCB to include the code...), his HP-like "indirection" (a feature
46 the uncompress (-z) mode finished and working.
52 file command, rather than the Research (V7) version or the V7-derived
58 see the man page).
66 COPYING - read this first.
67 * `README` - read this second (you are currently reading this file).
68 * `INSTALL` - read on how to install
69 * `src/apprentice.c` - parses /etc/magic to learn magic
70 * `src/apptype.c` - used for OS/2 specific application type magic
71 * `src/ascmagic.c` - third & last set of tests, based on hardwired assumptions.
72 * `src/asctime_r.c` - replacement for OS's that don't have it.
73 * `src/asprintf.c` - replacement for OS's that don't have it.
74 * `src/buffer.c` - buffer handling functions.
75 * `src/cdf.[ch]` - parser for Microsoft Compound Document Files
76 * `src/cdf_time.c` - time converter for CDF.
77 * `src/compress.c` - handles decompressing files to look inside.
78 * `src/ctime_r.c` - replacement for OS's that don't have it.
79 * `src/der.[ch]` - parser for Distinguished Encoding Rules
80 * `src/dprintf.c` - replacement for OS's that don't have it.
81 * `src/elfclass.h` - common code for elf 32/64.
82 * `src/encoding.c` - handles unicode encodings
83 * `src/file.c` - the main program
84 * `src/file.h` - header file
85 * `src/file_opts.h` - list of options
86 * `src/fmtcheck.c` - replacement for OS's that don't have it.
87 * `src/fsmagic.c` - first set of tests the program runs, based on filesystem info
88 * `src/funcs.c` - utilility functions
89 * `src/getline.c` - replacement for OS's that don't have it.
90 * `src/getopt_long.c` - replacement for OS's that don't have it.
91 * `src/gmtime_r.c` - replacement for OS's that don't have it.
92 * `src/is_csv.c` - knows about Comma Separated Value file format (RFC 4180).
93 * `src/is_json.c` - knows about JavaScript Object Notation format (RFC 8259).
94 * `src/is_simh.c` - knows about SIMH tape file format.
95 * `src/is_tar.c, tar.h` - knows about Tape ARchive format (courtesy John Gilmore).
96 * `src/localtime_r.c` - replacement for OS's that don't have it.
97 * `src/magic.h.in` - source file for magic.h
98 * `src/mygetopt.h` - replacement for OS's that don't have it.
99 * `src/magic.c` - the libmagic api
100 * `src/names.h` - header file for ascmagic.c
101 * `src/pread.c` - replacement for OS's that don't have it.
102 * `src/print.c` - print results, errors, warnings.
103 * `src/readcdf.c` - CDF wrapper.
104 * `src/readelf.[ch]` - Stand-alone elf parsing code.
105 * `src/softmagic.c` - 2nd set of tests, based on /etc/magic
106 * `src/mygetopt.h` - replacement for OS's that don't have it.
107 * `src/strcasestr.c` - replacement for OS's that don't have it.
108 * `src/strlcat.c` - replacement for OS's that don't have it.
109 * `src/strlcpy.c` - replacement for OS's that don't have it.
110 * `src/strndup.c` - replacement for OS's that don't have it.
111 * `src/tar.h` - tar file definitions
112 * `src/vasprintf.c` - for systems that don't have it.
113 * `doc/file.man` - man page for the command
114 * `doc/magic.man` - man page for the magic file, courtesy Guy Harris.
117 Magdir - directory of /etc/magic pieces
118 ------------------------------------------------------------------------------
123 - Initial match is preferably at least 32 bits long, and is a _unique_ match
124 - If this is not feasible, use additional check
125 - Match of <= 16 bits are not accepted
126 - Delay printing string as much as possible, don't print output too early
127 - Avoid printf arbitrary byte as string, which can be a source of
130 - Provide complete information with entry:
138 ------------------------------------------------------------------------------
141 $ gpg --verify file-X.YY.tar.gz.asc file-X.YY.tar.gz
142 gpg: assuming signed data in `file-X.YY.tar.gz'
149 $ gpg --keyserver hkp://keys.gnupg.net --recv-keys KKKKKKKK
151 ------------------------------------------------------------------------------