1 .\" Copyright (c) 1989, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
5 .\" This code is derived from software contributed to Berkeley by
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 3. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)strfile.8 8.1 (Berkeley) 6/9/93
33 .\" $FreeBSD: head/usr.bin/fortune/strfile/strfile.8 203926 2010-02-15 15:10:21Z uqs $
41 .Nd "create a random access file for storing strings"
54 reads a file containing groups of lines separated by a line containing
57 sign and creates a data file which contains
58 a header structure and a table of file offsets for each group of lines.
59 This allows random access of the strings.
61 The output file, if not specified on the command line, is named
62 .Ar source_file Ns Pa .dat .
64 The options are as follows:
65 .Bl -tag -width ".Fl c Ar char"
67 Flag the file as containing comments.
68 This option causes the
73 Comments are designated by two delimiter characters at the
74 beginning of the line, though
76 does not give any special treatment to comment lines.
78 Change the delimiting character from the percent sign to
81 Ignore case when ordering the strings.
83 Order the strings in alphabetical order.
84 The offset table will be sorted in the alphabetical order of the
85 groups of lines referenced.
86 Any initial non-alphanumeric characters are ignored.
87 This option causes the
93 Randomize access to the strings.
94 Entries in the offset table will be randomly ordered.
95 This option causes the
101 Run silently; do not give a summary message when finished.
103 Note that each alphabetic character in the groups of lines is rotated
104 13 positions in a simple caesar cypher.
105 This option causes the
112 The format of the header is:
115 uint32_t str_version; /* version number */
116 uint32_t str_numstr; /* # of strings in the file */
117 uint32_t str_longlen; /* length of longest string */
118 uint32_t str_shortlen; /* length of shortest string */
119 #define STR_RANDOM 0x1 /* randomized pointers */
120 #define STR_ORDERED 0x2 /* ordered pointers */
121 #define STR_ROTATED 0x4 /* rot-13'd text */
122 #define STR_COMMENTS 0x8 /* embedded comments */
123 uint32_t str_flags; /* bit field for flags */
124 unsigned char str_delim; /* delimiting character */
127 All fields are written in network byte order.
131 is to undo the work of
133 It prints out the strings contained in the file
135 in the order that they are listed in
137 .Ar source_file Ns Pa .dat
139 It is possible to create sorted versions of input files by using
143 is run and then using
145 to dump them out in the table order.
147 .Bl -tag -width ".Pa strfile.dat" -compact
157 utility first appeared in